Archive for April, 2007

Web server - 29Chapter 2Server-Side Web Scriptingmysql_select_db( techbizbookguide ) or die( Unable to accessdatabase );

Sunday, April 22nd, 2007

29Chapter 2Server-Side Web Scriptingmysql_select_db( techbizbookguide ) or die( Unable to accessdatabase ); $query = SELECT Blurb FROM Org WHERE OrgName = $org ; $qresult = mysql_query($query) or die(mysql_error()); $blurb = mysql_fetch_array($qresult) or die(mysql_error()); print( $blurb[0] ); ?>

); } ?>
$title$authorfirst$authorlast
After the preceding PHP source code is parsed by the PHP scripting engine, the followingclient-side code will be produced by the Web server and sent to the browser. TechBizBookGuide example from client