<?
mysql_connect("localhost","sacred","21233134");
mysql_select_db("sacred");
$query1=mysql_query("CREATE TABLE pplz(name CHAR(255), email CHAR(255), Primary Key(name)");
$query2=mysql_query("SELECT * FROM pplz");
$query=mysql_query("INSERT INTO pplz(name, email) VALUES('Sacred Priest','sacred_priest_2@hotmail.com')");
$query=stripslashes($query);
mysql_close();
echo "<b>$name<br>$email</b>";
?>
my script
i just want to display the field or watever u call that(Sacred Priest and the sacred_priest_2@hotmail.com)so how do i display the datas?i mean maybe i just wanna know how u change the field or watever to variable and i could use the echo function to display the variable...