Jump to content

Recommended Posts

Posted
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
Posted
Yes Correct Thats what i need can you post links to tutorials or you guide?
  • Management
Posted

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! >

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.