sanjayb18
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Installing WordPress
In reply to: databasei’m trying this but still it’s not working it’s give some error like INSERT.PHP not found inside wordpress
[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
<form action="insert.php" method="post"> Firstname: <input type="text" name="fname" /> Lastname: <input type="text" name="lname" /> <input type="submit" /> </form> ******************************* INSERT.PHP <html> <body> <?php $con = mysql_connect("mysql.cis.ksu.edu","cis_id","password"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("cis_id", $con); $sql="INSERT INTO nametable (fname, lname) VALUES ('$_POST[fname]','$_POST[lname]')"; if (!mysql_query($sql,$con)) { die('Error: ' . mysql_error()); } echo "1 record added"; mysql_close($con) ?> </body> </html>Forum: Installing WordPress
In reply to: databaseand how to save in data base..
Forum: Themes and Templates
In reply to: [Magazine Basic] Can i customize the footer?k..Thankyou very much….
Forum: Themes and Templates
In reply to: [Magazine Basic] Can i customize the footer?i am new in wordpress and i want to add videoplayer in my website page…so how can i do this….
Viewing 4 replies - 1 through 4 (of 4 total)