Anique Posted October 25, 2009 Posted October 25, 2009 I want to make page like search page and another page of adminpage to enter all office people data update into database whenever i search for some man id its show's me whole data of that person can anybody tell me how to do it?? i think its simple to make can anybody post tutorial please i am really thankful for him i am searching since 3 days ago
Management terabyte Posted October 26, 2009 Management Posted October 26, 2009 You want to save that data in a database right? You need at least some knowledge of PHP & MySQL to do it. Board Rules - Available Products - Need a Custom Work? < Don't PM me for support, post in the forum or submit a ticket from the client area instead! >
Anique Posted October 27, 2009 Author Posted October 27, 2009 Yes Correct Thats what i need can you post links to tutorials or you guide?
Management terabyte Posted October 27, 2009 Management Posted October 27, 2009 I do not have any beginner guide, however I suggest you to look at some simple script to see how it works connecting to a database and such and then start learning how to modify the data. For example putting this code in a php file in the same directory as IP.Board (where conf_global.php is located) will connect to the database:<?php require_once("conf_global.php"); mysql_connect($INFO['sql_host'], $INFO['sql_user'], $INFO['sql_pass']) or die(mysql_error()); echo "Connected to MySQL<br />"; mysql_select_db($INFO['sql_database']) or die(mysql_error()); echo "Connected to Database"; ?> Board Rules - Available Products - Need a Custom Work? < Don't PM me for support, post in the forum or submit a ticket from the client area instead! >
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now