No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Re: Use the code below to connect to the datsbase. It looks like you dont have mysql_select_db("dataBase_Name",$con); in your code. [CODE]<?php $con = mysql_connect("localhost","user_Name","passWord") or die("Check connection"); mysql_select_db("dataBase_Name",$con); ?>[/CODE] | |
Re: If you can look in the task manager, in the "Processes" tab, what process is using the most resources. | |
Re: You have: "INSERT INTO login (username, password) VALUES ('".$_POST['username']."', '".$_POST['pass']."')"; Change to: "INSERT INTO login (username,password) VALUES ('$_POST[username]','$_POST[pass]')"; Hope this helps | |
Re: Just replace $columnName with the actual column name you want in the select tag. The actual query doesnt have to be in the select tag. The loop is what has to be inside the select tag. Hope this helps. <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <?php //This … |
The End.