Greetings!!!!
I currently install MySQL for win98(WinMySQLAdmin 1.2) and PHP on my windows98 with PWS running.
I'm now on the basic of building PHP and MySQL.
I encounter this error on the basic PHP codes I have:
Warning: Undefined variable: searchstring in C:\Inetpub\wwwroot\search.php3 on line 3
HERE is the code::
<?php
if ($searchstring)
{
$sql="SELECT * FROM personnel WHERE $searchtype LIKE '%$searchstring%' ORDER BY firstname ASC";
$db = mysql_connect("localhost", "root", "");
mysql_select_db("learndb",$db);
Hope you can help me.