// Start a session session_start(); if (!session_is_registered("auth")) { session_register("auth"); } $sessionId=session_id(); // open the mysql connection, $auth = false; // Assume user is not authenticated if (isset( $PHP_AUTH_USER ) && isset($PHP_AUTH_PW)) { $msqusername="phurteau"; $msqpassword="p41r64h"; $msqdbname="120158_1"; mysql_connect('localhost',$msqusername,$msqpassword); mysql_select_db($msqdbname); $tablename = "ccphaccess"; // makes this hunk more portable // Check username and password agains the database. $cmdstr = "select china from ccphaccess where ((loginid='$PHP_AUTH_USER') && (password='$PHP_AUTH_PW'));"; $result = mysql_query($cmdstr); $num = mysql_num_rows($result); if ( $num != 0 ) { $auth = true; } } if ( ! $auth ) { header( 'WWW-Authenticate: Basic realm="Creative Connnections Adventures"' ); header( 'HTTP/1.0 401 Unauthorized' ); echo 'Authorization Required.'; exit; } else { ?>
Ba
Miao Zhu Zhang -- Pulling
Seedlings to Help Growth
The
Story Behind the Idiom
A farmer was desperate for a good harvest from his rice paddies -- even though
he had only recently sowed the seeds. He couldn't eat or sleep and frequently
wandered to his paddies to see if the seedlings grew taller. One morning,
he was struck by a brilliant idea. He ran to the field and pulled each seedling
upward so they seemed to grow taller. He busied himself all day doing this
and went home exhausted but extremely happy.
'Oh, I'm so tired,' he said to his children, 'but we are definitely going to have a good harvest this year since all the seedlings are growing taller.' His children didn't understand what happened. They went to the field to check and found that all the seedlings had died.
The
Idiom
Ba
miao zhu zhang means 'pulling seedlings to help growth.' The story and
the idiom warn us that if we try to speed up development in an unnatural way,
our action will backfire. It seems as though ancient Chinese scholars already
understood the importance of sustainable development.
Example:
It would be considered ba miao zhu zhang if you sign up your five year
old son for a whole slew of extra-curriculum courses as he enrolls for Kindergarten.
It won't make sense to have him study classic literature and advanced math
if he hasn't learned to read or count yet. After all, he's only seedling!
Next Idiom
-->
Back to Chinese Idiom Grab Bag Main Page
Chinese
Idiom Grab Bag |
© 2007 OneWorld Classrooms. All rights reserved.