Quote:
|
Originally Posted by ahmad
see if this helps :
PHP Code:
<?php
$fullname = $_GET['name'];
$query=mysql_query("SELECT * FROM $table where name='$fullname'") or die(mysql_error());
while($row = mysql_fetch_array($query)) {
$j = mysql_num_fields($query);
for($i=0;$i<$j;$i++) {
$k = mysql_field_name($query,$i);
$$k = $row[$k];
}
$entry=stripslashes($entry);
Echo" entry";
?>
to see somthing you just type : index.php?name=FRANK
|
Where would i specify what to direct frank to?? Is this in a my-sql database??
If so is there a way to do it in another form such as a text document or web site.