Nov 21, 2009
Pages: 1, 2

Php Search Engine Script For Mysql Database

free web hosting

Read Latest Entries..: (Post #11) by online on Dec 20 2007, 07:42 PM.
Here is one i made 2 years ago...in your case it will be perfectCODE<?phpinclude("header.php");echo '<h1>Sökning</h1> <div class="descr">Sök efter</div>';echo '<form action="search.php" method="get">';echo 'Sortera efter:<br><select name="orderby">';echo '<option value="username">User</option>';echo '<option value="Fname">Förn...
read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Open Discussion > MODERATED AREA > Computers > Programming Languages > PHP Programming

Php Search Engine Script For Mysql Database

ivenms
A search engine is provided to facilitate the user with undemanding and clear-cut search options. The search facility includes simple search, search by title, search by word/phrase, ect… Thus, the user is at a safe distance from the risk of selecting files/folders ambiguously. In addition, a history of recent searches can be preserved for future perusal.


Now day’s visitors have a large option for his needs on internet and so visitors are not vesting their time by following the dead links on your site. So a search engine is essential for your site to attract your visitors and hand around on your site by directly deviating them to their interesting topics. This also make the visitors happy and the probability of next visit by them also been increased.


In here, I am trying to give some tips on how to create simple search engines on your database. Normally a large amount of webmasters now using open source and free database and programs like MySql with PHP scripting. So my search engine considered on the basis of MySql database and using PHP scripting.


For Database Tables a SQL query called LIKE is used for finding matching parts on your text fields on your table. This is normally used for search engines. An example for LIKE query used in search engine is as follows:

********************************************************************************

SELECT FIELDS FROM TABLE WHERE TEXTFIELD LIKE ' %keyforsearch%’
********************************************************************************


Here this query will select all rows from the table named TABLE on which its column TEXTFIELD containing search keyword. You can search on multiple column by using AND query. An example query for multiple search is as follows:



********************************************************************************

SELECT FIELDS FROM TABLE WHERE TITLE LIKE ' %keyforsearch%’ AND
TEXTFIELD LIKE '%keyforsearch%’
********************************************************************************



The FIELDS denotes all fields you want to select as a results. Multiple fields can be selected by using comma operator: FIELD1, FIELD2.


Now I am going to tell about the PHP script which makes use of this query for its database search. I am giving the PHP codes I used on my sites for database search. This code is so simple and optimized. You just want to change some parts and put the entire code to your site for working.
The 1st part is information about your site database. Put this part to the top of your PHP page. Change this part with your information about your database for connection.


CODE
**********************************************************
            $db_server = "localhost";
     $db_name = "database_name";
     $db_username = "database_username";
     $db_password = "database_password";
**********************************************************



The next part is a function which used for establish connection of database. No need of changing this part. Just put this codes to the page.


CODE
**********************************************************
function db_connect(){

    global $db_server;
    global $db_name;
    global $db_username;
    global $db_password;

    $con =@ mysql_connect($db_server,$db_username,$db_password);
    if ($con!=false){
        if (!(mysql_select_db($db_name,$con))){
            // cannot find database
            die("Cannot find Database");
        } else {
            // fine
        }
    } else {
        die ("Cannot connect to database");
    }
    return $con;
}
***********************************************************

The next part of search engine script is SQL generating and running function which retrieves the results of search. You have to change some portions on the function which denoted with <> change that part replacing with your information. Don’t forget to replace < > symbols because that makes syntax error. For changing this part, refer the previously explained portions on SQL QUERY.


CODE
***********************************************************
function db_search($key) {
        $con = db_connect();
    $key = mysql_escape_string($key);
    $sql = "SELECT DISTINCT <FIELDS RETRIVED> FROM <TABLE NAME> WHERE <FIELDNAME FOR SEARCH> LIKE '%".$key."%'";
        $result = mysql_query($sql,$con);
        mysql_close($con);
    return $result;
}
***********************************************************


The next part is for retrieving the posted search key posted on an html form. This part catches the search key and passes it to previous function db_search(). It also convert the result to an array for displaying it on your page as the result.



CODE
***********************************************************
if(isset($_REQUEST['key']))
{
   $key = $_REQUEST['key'];
   $result = db_search_bible($key);
  if($result == FALSE)
    $content = 'No Match Found';

else
    while ($row = mysql_fetch_row($result)) {
            $content .=  $row[0].', '.$row[1].', '.$row[2].’,  '.$row[3].'…<br>';
}

echo $content;
***********************************************************



The $content is the variable which stores the result. The selected fields will come in the format of $row[0], $row[1], $row[2],…… according to your selection. If you selected two fields named title and body then you can display them as selecting $row[0] for title and $row[1] for body.

If you want to see the result on a formatted style then ad some more code and replace a last part of the code by this. This part is for displaying the two selected fields TITLE and BODY. Change this display property with your structure.


CODE
**********************************************************
if(isset($_REQUEST['key']))
{
   $key = $_REQUEST['key'];
   $result = db_search_bible($key);
   $html = ‘<html><head><title>Search Results</title></head><body><table border=0 width=”100%”><!-contentà’</table></body></html>’;

  if($result == FALSE)
    $content = '<tr><td>No Match Found</td></tr>';

else
   {
    $content = “”;
    while ($row = mysql_fetch_row($result)) {
            $content .=  ‘<tr><td><h2>’.$row[0].'</h2> <br><br>'.$row[1].'</td></tr>’;
   }
}

$html = str_replace("<!--content-->",$content,$html);

echo $html;
**********************************************************


Your search engine script is ready. You now want an html form for submitting search words. Make sure that the form contains the text field naming “key” where to submit search words. An example for search form is given below:


CODE
********************************************
<form type=”GET” action=”filename.php”>
<input type=”text” name=”key”>
<input type=”submit” value=”Search”>
</form>
********************************************


That’s all. You now were owning a search engine which is capable of searching your database. Enjoy yourself by using this searching script. For more technical support, visit php.net.

By Iven Mathew Simon
--- Site Administrator of WebMasters-Forums.Com

 

 

 


Comment/Reply (w/o sign-up)

ivenms
Post your satisfactions here on my code for SQL DATABASE SEARCH SCRIPT. If there any error, Please mention that on here.

Comment/Reply (w/o sign-up)

electron
Well if this search script is for your site than quite satisfactory.
But it does lack quite a lot of security POST handling.

Also you have named the search function "db_search()" but while using it you referred to it as "db_search_bible()"
People will get confused.

Another thing is that your result page wont work at all.
As you have put in the '$html' variable a comment ' <!-contentà’ ' and while replacing it you are using '<!--content-->'.

The replace wont take place dude(I am sorry if i am rude).

One last thing this is a search script that would search within a small database.

You cant call it as a SEARCH ENGINE.
For the real tough part of a search engine is to get and INDEX the result of a link it has and then find new links again and then store them.

That is a real SEARCH ENGINE dude.There you got to consider storing the whole of the WEB and you require PB's(Peda Bytes) of space.

So alot has to be done on the script that you have written and then rightly call it a search engine.

Sorry if i am being very rude.

 

 

 


Comment/Reply (w/o sign-up)

ivenms
Thanks for your valuable informations given. The error happened because of careless typing. The code after replacing bugs is as follows:

CODE

******************************************************
     $db_server = "localhost";
     $db_name = "database_name";
     $db_username = "database_username";
     $db_password = "database_password";
******************************************************

**********************************************************
function db_connect(){

    global $db_server;
    global $db_name;
    global $db_username;
    global $db_password;

    $con =@ mysql_connect($db_server,$db_username,$db_password);
    if ($con!=false){
        if (!(mysql_select_db($db_name,$con))){
            // cannot find database
            die("Cannot find Database");
        } else {
            // fine
        }
    } else {
        die ("Cannot connect to database");
    }
    return $con;
}
***********************************************************

***********************************************************
function db_search($key) {
        $con = db_connect();
    $key = mysql_escape_string($key);
    $sql = "SELECT DISTINCT <FIELDS RETRIVED> FROM <TABLE NAME> WHERE <FIELDNAME FOR SEARCH> LIKE '%".$key."%'";
        $result = mysql_query($sql,$con);
        mysql_close($con);
    return $result;
}
***********************************************************

***********************************************************
if(isset($_REQUEST['key']))
{
   $key = $_REQUEST['key'];
   $result = db_search($key);
  if($result == FALSE)
    $content = 'No Match Found';

else
    while ($row = mysql_fetch_row($result)) {
            $content .=  $row[0].', '.$row[1].', '.$row[2].’,  '.$row[3].'…<br>';
}

echo $content;
***********************************************************

**********************************************************
if(isset($_REQUEST['key']))
{
   $key = $_REQUEST['key'];
   $result = db_search_bible($key);
   $html = ‘<html><head><title>Search Results</title></head><body><table border=0 width=”100%”><!-content--></table></body></html>’;

  if($result == FALSE)
    $content = '<tr><td>No Match Found</td></tr>';

else
   {
    $content = “”;
    while ($row = mysql_fetch_row($result)) {
            $content .=  ‘<tr><td><h2>’.$row[0].'</h2> <br><br>'.$row[1].'</td></tr>’;
   }
}

$html = str_replace("<!--content-->",$content,$html);

echo $html;
**********************************************************

********************************************
<form type=”GET” action=”filename.php”>
<input type=”text” name=”key”>
<input type=”submit” value=”Search”>
</form>
********************************************


The mentioned script is only a path which leads you to built your own database search. This is not a full script which can installed for your site. I am giving you an idea. I just explaining what I done for searching my database and calling it as my search engine. Any problem with that?

Comment/Reply (w/o sign-up)

electron
No that is good now.
But I think u could improve this greatly.
For instance if the user typed inmany keywords you are not taking them seperately but as one whole string and trying to look for that as one string.

You might consider by exploding the string and then search for the results.

Best of luck

Comment/Reply (w/o sign-up)

ivenms
Ya I know that works well by parsing the searching key and divide it into seperate keywords. If you have other ideas, make it into executable programming language and post it. So the other can see your ideas and use it. Make this script as base and develop more advanced scripts.

Good Luck.

Comment/Reply (w/o sign-up)

electron
Well i am working on some program now and it would be ready soon for beta testing to the public.
There are others who provide the same software BUT i want to be better than them and I can do it better than them if not in the first BETA Release.

If you know PHP , MySQL or JavaScript you could be one of its developers later after it goes public.


Comment/Reply (w/o sign-up)

SpinCode
Speaking of parsing the input search keywords,
I recently came across a script at,

http://www.addedworth.com/welcome/MySearchParser.php

It automatically does all the parsing and generates the end search query for you.
I tested their online system, and it seems that its able to generate
AND, OR, NOT and Phrase searches, with search term highlighting too.

Check it out, it may be what you're looking for.

Spin

Comment/Reply (w/o sign-up)

farsiscript
nice tutorial dear ivenms
You can find many Search / add / edit / show / dump / read / write / update / delete / and .... query via phpmyadmin ,
phpmyadmin is really nice php script for Beginner's for learn querys
when you working via phpmyadmin , this script show your query at top of page and you can use it for any script
thanks

Comment/Reply (w/o sign-up)

ivenms
Thanks for your complement.

Now Iam running a support forum for programmers. You can approach me for your every needs.

Comment/Reply (w/o sign-up)

Latest Entries

online
Here is one i made 2 years ago...in your case it will be perfect

CODE

<?php
include("header.php");
echo '<h1>Sökning</h1>
<div class="descr">Sök efter</div>';

echo '<form action="search.php" method="get">';
echo 'Sortera efter:<br><select name="orderby">';
echo '<option value="username">User</option>';
echo '<option value="Fname">Förnamn</option>';
echo '<option value="Lname">Efternamn</option>';
echo '<option value="email">Email</option>';
echo '</select>';
echo '<br><br><br>';

echo '<table>';
echo '<tr><td><b>SÖK:</b></td></tr>';
echo '<tr><td><select name="select">';
echo '<option value="username">Username: </option>';
echo '<option value="Fname">Förnamn: </option>';
echo '<option value="Lname">Efternamn: </option>';
echo '<option value="email">Email: </option>';
echo '</select>';
echo '<input type="text" name="username" /></td></tr>';

echo '<tr><td><input type="submit" name="submit" value="Search" /></td></tr>';
echo '</table>';
echo '</form>';


$result2=$_GET['username'];
$orderby=$_GET['orderby'];
$result3=$_GET['select'];
$theres=trim($result2);
if ($theres== "")
{
echo "<br><br><p>Fyll i före du söker !</p>";
}
if($_GET['submit']=='Search'){
echo'Results for <b>'.$theres.'</b>... ';
$result80=mysql_query("SELECT COUNT(*) FROM all_users WHERE $result3 LIKE '%$theres%'");
echo 'Found <b>'.mysql_result($result80, 0).'</b> match/s<br><br>';
$result = mysql_query("SELECT * FROM all_users WHERE $result3 LIKE '%$theres%' ORDER BY '$orderby'");
$count = 0;
echo '<table align=center>';

while($row=mysql_fetch_array($result)){
if($count == 0 || $count == 4 || $count == 8 || $count == 12){ echo "<tr>";}
$count++;
echo '<td><a href="gallery.php?user='.$row['username'].'"><img src="allimages/'.$row['start_picture'].'" width="120px" height="95px" class="img" alt="'.$row['username'].','.$row['description'].'"></a><br><center>'.$row['username'].'</center></td>';
}
if($count == 28 || $count == 32 || $count == 36 || $count == 40 || $count == 44 || $count == 48){ echo "<tr>";}}
echo "</table>";
?>
<?php
include("footer.php");
echo'</div>';
?>


Notice from rvalkass:

Fixed code tags.

Comment/Reply (w/o sign-up)



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Pages: 1, 2
Similar Topics

Keywords : php, search, engine, script, mysql, database

  1. How To Make Php Newsletter Script
    (3)
  2. Php Guest Online Script
    (3)
    make an index.php copy and paste this code CODE $db_host = "localhost"; $db_user = "root";
    $db_pass = ""; $db_name = "test"; $dbc = mysql_connect($db_host, $db_user, $db_pass); $dbs =
    mysql_select_db($db_name); $tm = time(); $timeout = $tm - (30*60); if($_SERVER ){$ip=$_SERVER ;}
    else{$ip=$_SERVER ;} $brws = explode("(",$_SERVER ); $browser = $brws ; mysql_query("DELETE FROM
    guest WHERE actvtime mysql_query("INSERT INTO guest SET  time='".$tm."',
    ip='".$ip."', browser='".$browser."'"); $count =
    mysql_fetch_array(mysql_query("SELECT COUNT(*)....
  3. How To Make A View New Post Script?
    (5)
    Ok so i'm still working on the forum software i posted about a while back, but I have no idea
    how to do this. I want to make a view new post script, as this is one of the main things that my
    forum software dose not have that all other forums have. so does any body have an idea on how i
    would do this? Thanks.....
  4. Guessing Php Script
    (2)
    I am looking for: freeware php quess the person in the photo game script....
  5. Create Table - Mysql Code - Help
    (1)
    I need your feedback about setting the database issues. Please, review them and correct some entries
    in the code if they got some mistakes. This is the code itself: SQL CREATE TABLE `news` (
    `id` int(250) NOT NULL auto_increment, `title` varchar(255) NOT NULL default '',
    `text` text NOT NULL, `author` varchar(255) NOT NULL default '', `valid` varchar(255)
    NOT NULL default '', `date` varchar(255) NOT NULL default '', PRIMARY KEY
    (`id`) ) ENGINE = MyISAM ; ....
  6. Mysql Error
    (3)
    ok i need some more help from the wonderful coders here at Trap. I'm almost done with my CMS
    script, but i'm having a problem with the installer.php file, when it trys to inseret the user
    data into the database i keep getting the following error: CODE mySQL Error: You have an error
    in your SQL syntax; check the manual that corresponds to your MySQL server version for the right
    syntax to use near ';INSERT INTO `members` (`id`, `name`, `username`, `password`, `email`,
    `title`) ' at line 1 the code that is being excuted by the php file is this: C....
  7. Html Form!
    Using MySQL?! (4)
    Hey, I need your help again! I need some good working tutorial how I can update my SQL through HTML
    form. I did use some tutorials online found with the help of google; but they do not work properly;
    I mean there are still small mistakes. I need to have a good tutorial to follow. It should be
    based on security and more things. It has to be done in proper way.......
  8. Best Php And Mysql Editor For Noobs
    anyone any php or mysql editor that is good for noob (11)
    hi there guys, from my previous posting, i am a noob in php and mysql programming. I want to know
    if there are any php and mysql editors which are best for me as a noob. i appreciate your kindness
    ....
  9. Need Help Installing Dolphin Community Script!
    (5)
    I'm not sure if this is the right place to post this but I really need help in installing the
    dolphin community script. I have absolutely no previous experience of scripts or programming. I
    would really appreciate if someone could walk me through it step-by-step, or even do it for me by
    logging into my cpanel. I have tried to install it my self but I'm a little confused. I'm
    sure it won't take very long at all for someone who has done this before.....
  10. Tools Needed!
    PHP & MySQL (9)
    Hello, everyone! I need some tools for those two things to test PHP scripts coming together with
    database on my laptop, instead checking them on a web-server which takes time.....
  11. Php Downloads Script
    (4)
    I've been looking all over the net for a PHP script which can provide an interface to browse a
    downloads database. The database could be powered by MySQL. If you know a script like this, please
    post it here. Thanks in advance, Ironchicken.....
  12. Mysql Won't Update
    (5)
    Ok, so I'm making some arcade administration software so I don't have to add games the hard
    way, well anyway, one of the features I have is that on the homepage is a featured author and as
    such I just have it so it updates one line in the mySQL. Well, the page with the form passes on the
    varibles fine and the updating page recieves them because I echoed everything, then I build the
    query and I even echo the query and it comes out exactly how I want it to, but for some reason, the
    database itself won't update even though all the varibles are there. Here's....
  13. Html Code Tester. Online Script
    (15)
    Yes, yes. I have another script that I have written and I am distributing. I am not entirely sure if
    this works. I have not tested it yet, but I will later and post back with a demo and fix it up.
    Current script: CODE //Save this as something like htmltest.php function CheckForm() {
    $html_unsafe=$_POST ; //Gives us our user input $html_safe=str_replace(" //Starts security measures
    $html_safe=str_replace("?>"," ",$html_safe); //User input now secure server side //Still security
    issues client side echo $html_safe; //echos our statement } //End function //Main script....
  14. Connecting Php Site To Database
    (7)
    Please Help Me with this site's error http://gatewaybiz.x10hosting.com/surf/ ....
  15. Very Simple Online Now Script
    This is a very simple online now script. (4)
    Hi all, Its Aldo. anyways, I wont be using the method of pagination, i will just tell you how to
    make a basic online now script. When someone logs in, now take into consideration that the name of
    the username input is username ( First ,create a table in your database saying online now and add 2
    fields to it. id and username CODE id type=integer(INT) , auto increment, length =255 and
    username = VARCHAR length=the limit a username should be in your site now from there we take off
    : CODE //logged.php //authentication script //connection script //if connectio....
  16. Auto Pruning An Sql Database With Php
    How can i do this? (5)
    Hey all. Now i have a DB, an SQL DB, and i need to auto prune the data there to delete rows lder
    than a certain time, lets say 2 months for now, the question is how do i do this? The obvious thing
    is just to add a field which is the numerical representation of the month when the data is entered
    and every time the DB is accessed it will check this number against the current month,in a numerical
    format, and if the difference is two or greater that row is deleted, so if the month is January, it
    would be O1 and if the current month is march then it would be O3 and the diff....
  17. Free Auction Script
    Any Suggestions? (7)
    Any free auction script suggested? I want it to be as many practical functions as possible, yet
    easy to manage. And more importantly, it is free! Appreciate your kind suggestions!....
  18. Phpmyadmin And Php And Mysql
    tutorial (1)
    hi i think phpmyadmin is nice script (3rdparti) to learn php and mysql , you can add database and
    then make tabel with rows and columns then you can customise (search , show rows , show columns ,
    add rows , delete rows) tabel in phpmyadmin when you are customise phpmyadmin , this script show you
    php code . you can use this code for browse in database . for example : showing tabel : CODE
    SELECT * FROM `tabelname` LIMIT 0 , 30 searching : CODE SELECT `columns` FROM `tabel` LIMIT
    0 , 30 you can use with while loop showing Ascending: CODE SELECT * FROM....
  19. Watermark Your Image With Simple Php Script
    found it on the net (39)
    This script was found on the net http://tips-scripts.com/?tip=watermark#tip B&T's Tips &
    Scripts site. Just in case the site may not show, I will include the code here: List of things
    needed: 1. your image in any format 2. watermark image--in gif format with transparent background 3.
    script below with name (i.e. watermark.php) CODE // this script creates a watermarked image
    from an image file - can be a .jpg .gif or .png file // where watermark.gif is a mostly transparent
    gif image with the watermark - goes in the same directory as this script // where this....
  20. Subquery In Mysql
    (8)
    Is there anyway to make subqueries work in MySQL? I'm pretty certain someone out there knows
    how. /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> Can anyone help?
    CODE Select * from ITEMS where ID="Select Max(ID) from ORDERS"; This works for MSAccess and
    SQL Server but why not in MySQL? I'll be writing some reports and I've shifted database
    from MSAccess to MySQL. Help! Thanks.....
  21. Can You Add Images Into A Mysql Database?
    Using Php? (23)
    I'm learning php in class right now, but I'm still not that good at it, what I'm
    wondering is when I write the php so that it can connect with a database, can I at the same time
    have it that it is able to display back images that I choose. Like, I want a search feature, where
    you can search for a keyword, and it will bring back a list of all the possible entries with that
    keyword, but each of these entries will have a photo associated with it. Now, do I put these image
    files directly into the database, or do I write the code to link them from my files to th....
  22. Transfer Variables To Another Php Script
    (11)
    Hello, I've one registration page where the users fills in their information, is it possible to
    trasnfer the things the fill in on the registration page to another script that does someting and
    returnes something to the first page like true/false and then the registration gives an error
    messange if the other php script returned false? Something like the script "activates" another
    script that does something and returnes the result back to the original script. Best Regards ....
  23. Parse: Error Unexpected T_lnumber
    php parse error when running script (4)
    Hi. I've just created a php script. The main object of the script is to delete some old files
    and replace it with a new file with some new content, effectively moving the contents from one file
    to another. These are the first 50 lines of the file: /* Calculate For The "A" Group - The
    Latest Games ID */ $a_B = 002; while(file_exists("a_" . $a_B . ".dat")) { $a_B++; }
    $new_page_contents = " " . $_POST . " " . $_POST . " include
    \"/home/cmatcme/public_html/footer.php\"; ?> "; $a_stream = fopen($a_B . ".cmat", "w+");
    fwri....
  24. Increment A Mysql Column
    how to increment a MySQL column one unit (8)
    Hi, I have a column in a MySQL table which contains a counter of the views of the object described
    by this table. I would like to increment this value by one everytime the object is viewed. Obviously
    came into my mind the possibility of retrieving the value of this field, store it in a variable
    increment this value by one and perform an UPDATE query again with this new value. My question is if
    there is a MySQL option to update the field with its actual value plus an unit increment. I hope you
    understand the issue.....
  25. Php News Script
    how to make news script that uses MySQL writen in PHP (20)
    How to make a News script with PHP + MySQL So..in this tutorial i will explain how to create PHP
    news script. first we have to create the table in My SQL.. with the code below you will do this (
    you have to enter it into SQL field ..in PHPmyADMIN) CODE CREATE TABLE news ( id int(10)
    unsigned NOT NULL auto_increment, postdate timestamp(14) NOT NULL, title varchar(50) NOT NULL
    default '', content text NOT NULL, PRIMARY KEY (id), KEY postdate (postdate), FULLTEXT KEY
    content (content) ) >>>> script files 1 file will show the news ,1 file will....
  26. Script: Php Jukebox
    A one file script! (6)
    This scripts is so simple, you dont need to edit ANY of it! All you have to do is make a folder
    called 'songs' and put some audio files in it. Here is the whole page, I named it index.php
    and put it in a folder called 'music': CODE PHP jukebox ©2005 Craig lloyd.
    All rights reserved. Visit cragllo.com for more scripts --> /** * ©2005 Craig lloyd. All rights
    reserved. * * Mod Title:           Simple PHP Jukebox * Author:              Craig Lloyd * Author
    Email:        cragllo@cragllo.com * Author Homepage:     http://www.cragllo.com/ * Des....
  27. Many Php Script Sites
    (18)
    Hi I find many sites has PHP scripts :: QUOTE http://www.proxy2.de/scripts.php
    http://www.free-php.net http://knubbe.t35.com/ http://www.ngcoders.com/
    http://www.oxyscripts.com/ http://www.phparena.net/ http://www.1phpstreet.com/
    http://px.sklar.com/ http://www.scoznet.com/ http://php.resourceindex.com/ /blink.gif"
    style="vertical-align:middle" emoid=":blink:" border="0" alt="blink.gif" />....
  28. Problem On Mysql "order By"
    (6)
    Can someone please help...? I have a problem with using "ORDER BY" in mysql... CODE SELECT *
    FROM `foo` WHERE b='abc' ORDER BY 'number' ASC i want to sort the table out by
    the value in "number" which is a number.. but it came out to be sort by like this way...
    1->10->2->20 it only sort out the front digit.... but what i want is it will sort by how great the
    number is like this... 1->2->3........->10....->20 sorry my english isn't good enough...to
    describe my problem properly... hope you can understand and help me on this.....thx....
  29. Mysql Password
    (4)
    Hey guys quick question about trap 17s mysql version. How do i change the password to the database?
    I cant seem to find online help for this version anywhere. Any help is very apperciated!....
  30. Mysql Question:
    (7)
    what do I need to input to create a new user and pass. I've tried before, but it kept giving me
    an error like I wasn't allows to creat users. Please note that this is on my computer. So, I was
    also wondering how to 'log in' to root user so that i can make a new user. Thanks in
    advance.....

    1. Looking for php, search, engine, script, mysql, database

Searching Video's for php, search, engine, script, mysql, database
See Also,
advertisement


Php Search Engine Script For Mysql Database

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com