Jump to content

arnel9

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

arnel9's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. oh.. thanks... i searched some ideas in optimizing php code in google and i try the tips that i\'ve found and it works fast..!! i make some optimization in the code that i given earlier base on the tips and i come up with this: [php:1:6c213089bb]<?php ob_start(); $id=mysql_connect(\"host\", \"username\", \"password\") or die(mysql_error()); mysql_select_db(\"databasename\", $id); $rs = mysql_query(\"Select name from table_name\", $id) or die(mysql_error()); $opt = \"<select name=\'names\'>\"; do { $opt.= \"<option value=\'\" . $row[\'name\'] . \"\'>\" . $row[\'name\'] . \"</option>\"; } while($row=mysql_fetch_array($rs)); echo $opt . \"</option>\"; unset($opt); ob_end_flush(); ?>[/php:1:6c213089bb]
  2. is there any ways to optimize php codes. Example: $id=mysql_connect(\"host\", \"username\", \"password\") or die(mysql_error()); mysql_select_db(\"databasename\", $id); $rs = mysql_query(\"Select name from table_name\", $id) or die(mysql_error()); echo \"<select name=\'names\'>\"; do { echo \"<option value=\'\" . $row[\'name\'] . \"\'>\" . $row[\'name\'] . \"</option>\"; } while($row=mysql_fetch_array($rs)); the code above sometimes gives me error \"Page cannot be displayed\" because the record that i try to retreive is more than 1000. :?:
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.