Nov 21, 2009

Making A Link = Mysql_query

free web hosting
Open Discussion & Free Web Hosting > Computers & Tech > Programming > Scripting > PHP

Making A Link = Mysql_query

Feelay
Hey!

I will try to make this as clear as possible.

how can I make the following.

I have a list, of all members on my site. If I press on a members name(link), I will come to his profile.
To come to his profile, I need to get out some vaule from the database, but to get out some value from the database, I must tell the code, how it should know who the user is (hard to understand?).
To do that, I must add a mysql_query in the code ( I think), like "SELECT user FROM dbname WHERE user=link".. This is just how I think it works. I know it is kinda wrong.. but I don't know how much. Can anyone please help me on the line ?

(Sorry if you didn't understand..)

Comment/Reply (w/o sign-up)

vujsa
Well, we use query urls for the job. Like so:

www.domain.com/index.php?username=vujsa

It would be better to use a user id instead as there could be characters in the username that will have trouble in the url like spaces. But, it is up to you.

Anyhow, here is the PHP needed to read the url provided:
CODE
$_GET['username'] = $username;

mysql_query("SELECT `user` FROM `dbname` WHERE `user` = '$username'");


I usually change the super global variable $_GET to a regular variable since they can get tricky to insert into some types of strings.

I would suggest adding a few lines to ensure that whatever the link contains is valid data and now an attempt to inject data into your database.

That should just about do it for you.
I'm sure this will provide you with a lot of ideas and questions. Good luck with your project.

vujsa

 

 

 


Comment/Reply (w/o sign-up)

Feelay
hmm. I still don't understand.

How can I make a normal
CODE
<a href blabla..>link</a>
link into a $GET['..'] variable?

Comment/Reply (w/o sign-up)

mastercomputers
Hey Feelay,


What vujsa means is that if you had a link like

CODE
<a href="index.php?username=someuser">someuser</a>


Then that would create a $_GET['username'] variable with the value 'someuser' for the index.php page.

I notice vujsa is slipping though, his code should be

CODE
$username = $_GET['username'];


Doing it his way round, you would get an undefined variable trying to be assigned to a $_GET item, I'm not actually sure if they can be modified either, I should probably test that just out of curiosity.

By the way, I don't like this method of using a $_GET request to be inserted into a mysql_query, this just sounds warning bells.

If you notice the links to members here, they have been rewritten to suggest they are .html pages, this is just for SEO because bots don't like pages with get requests. The $_GET part is the m## where ## is a number that represents the member's id, that is the only information that is really relevant in these links, and will allow you to discover other members by just altering the m## part, maybe it poses SQL injection exploits, but I don't really have time to test but I'm sure others have already attempted to exploit it and IPB may have solved the problem.

Cheers,

MC

Comment/Reply (w/o sign-up)

vujsa
QUOTE(mastercomputers @ Feb 19 2008, 03:45 AM) *
Hey Feelay,
What vujsa means is that if you had a link like

CODE
<a href="index.php?username=someuser">someuser</a>


Then that would create a $_GET['username'] variable with the value 'someuser' for the index.php page.

I notice vujsa is slipping though, his code should be

CODE
$username = $_GET['username'];


Doing it his way round, you would get an undefined variable trying to be assigned to a $_GET item, I'm not actually sure if they can be modified either, I should probably test that just out of curiosity.

By the way, I don't like this method of using a $_GET request to be inserted into a mysql_query, this just sounds warning bells.

If you notice the links to members here, they have been rewritten to suggest they are .html pages, this is just for SEO because bots don't like pages with get requests. The $_GET part is the m## where ## is a number that represents the member's id, that is the only information that is really relevant in these links, and will allow you to discover other members by just altering the m## part, maybe it poses SQL injection exploits, but I don't really have time to test but I'm sure others have already attempted to exploit it and IPB may have solved the problem.

Cheers,

MC

laugh.gif, yeah I missed that! Sorry about that. Been kind of tired lately I guess.

Anyway, long time no see mastercomputers.

Anyway, what MC told you is correct. You really need to protect yourself by checking the inserted data carefully before sending it on to the SQL query.

Other than that, I think that you should be well on your way.

vujsa

Comment/Reply (w/o sign-up)

Feelay
QUOTE
<a href="index.php?username=someuser">someuser</a>

hmm.. lets say I have 100 members. I think it would take a very long time to change the index.php?username=someuser to all the members or? can I write something else instead of "someuser"=?

Maybe this would work?
If I make a for loop, (or while or whatever) an let it show all the names as a link, were the "someuser will be replaced with the "someuser" value.. would that work?

Comment/Reply (w/o sign-up)

Mordent
I did something very similar to this just yesterday, in fact. I'll see if I can rummage up my little snippet of code for you and tweak it to make it more generic. *rummages*

The code below should be all together, but I've stuck a load of comments and whatnot before each 'chunk' to explain a little more about what I'm doing.

First, we access the database. I did this in a seperate file, which I used require to open up here. Note that I defined a variable (not actually 'SomeAccessCode', but even that would work), which db.php checks whether or not is defined. If it is, it connects to the database etc.

CODE
<?php
// access database
define('SomeAccessCode',true);
require('includes/db.php');

The next chunk runs a query on the database table 'members', ordering them by id and retrieving the username. Technically you don't need to order them, but it makes sense to do so for me. This bit also counts up how many rows (i.e. members) you have, ready for the loop next...

CODE
// get the usernames of the members
$getMembers = mysql_query('SELECT username FROM members ORDER BY id') or die(mysql_error());
$numMembers = mysql_num_rows($getMembers);

This bit here irked me for a while, and still does to some extent. Using a for loop probably isn't the best way, but it works for one thing. Anyone care to mention a neater way of doing this? Anyway, the point is that it cycles through the members, each time creating an array with the data in that row and using echo to put that in an unordered list with each member on their own line. The link will point to a page called member_profile.php, where their name can be extracted using $_GET['username'], and on that page further queries can be made to the database to get whatever information you want to show about them. Note that I put a new line after each echo, but that's just me being fussy. wink.gif

CODE
// display each member's name, with a link to their profile
echo '<ul>
';
for($count = 1; $count <= $numMembers; $count++)
{
    $row = mysql_fetch_array($getMembers);
    echo '<li><a href="member_profile.php?username=' . $row['username'] . '">' . $row['username'] . '</a></li>
';
}
echo '</ul>
';
?>

If you wanted, you could point the link to index.php instead (with the username still given) and check at the beginning if $_GET['username'] is set (using the isset() function), which I think should deal with it nicely. Bear in mind the security implications of the whole thing, of course, which I only really just touched on here by having db.php check if it was being called by an 'internal' script.

As for making the pages .html, if you're worried about SEO then I'll let someone else take over, as it really isn't my field.

Hope this helped!

Comment/Reply (w/o sign-up)

Feelay
thank you guys smile.gif Now. what is the best way to avoid SQL injections ?

Comment/Reply (w/o sign-up)

ethergeek
QUOTE(Feelay @ Feb 28 2008, 09:48 AM) *
thank you guys smile.gif Now. what is the best way to avoid SQL injections ?

I was just about to say something to this effect reading through this thread...the code vujsa posted up there does nothing to sanitize database inputs. Brings http://xkcd.com/327/ to mind.

Check out this function in PHP to sanitize your inputs: http://us.php.net/manual/en/function.mysql...cape-string.php.

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)

Similar Topics

Keywords : making, link, mysql, query

  1. Can't Make This Query Working.
    (2)
  2. Letting Users Add Mysql Data With Php
    (1)
    I'm curious as to the best methods of letting users submit data to a MySQL database, displaying
    that data, and removing any unwanted tags etc. from it. Currently, there's a handful of PHP
    functions that I know of to help with this: mysql_real_escape_string() - perhaps the best known
    and most commonly used function, it should be used in pretty much any MySQL query. It escapes
    characters that have SQL significance. QUOTE(php.net) ...which prepends backslashes to the
    following characters: \x00, \n, \r, \, ', " and \x1a I like to think I made a pretty....
  3. Making A Value In A Textbox Stay
    (11)
    Hey! I know it is possible, but I don't know how to do it. Anyone who know how I can make the
    following: When a user type a message, and press Send, he will come to a page that will check the
    message. If an Error occur, the user must press a button, that will take him back to the message,
    and fix the error. but The problem is, that when the user press the button, his message is gone, and
    he must write it again. bad luck, if the message was long. Hope You undertsand what I want
    /smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> Tha....
  4. Mysql Question(inserting Number From A Textfield)
    (3)
    Hey! I am trying to do a "Admin give EXP script". But I can't make it work. The value is not
    updating, but the update query is correct.( I think:P) I think the fault is here: CODE
    $expcomp=$givexpp += $givexp; The $givexp is the variable for the amount of Xp the admin wants
    to give. the $givexpp is the variable for the user info (in this case, the experince he already
    have). The datatype for the XP in the database is INT. So I have no idea if it can take data from a
    normal textfield. If you need to see all the code, here you go: CODE session_start();....
  5. Making Something In Mysql Happen Only Once
    (10)
    Hey! I know I am asking alot. But much is happening theese days. Sorry if I disturb with my
    questions. The thing I am trying to do is: Ex. If the user becomes level 2, he should get 5 skill
    points. I can't do this: CODE if($userlevel=5){ mysql_query("UPDATE user SET skillpoints
    =$points+5");} because then it would update everytime the code was loaded. I hope you understand
    what I am trying to do. If not, tell me /smile.gif" style="vertical-align:middle" emoid=":)"
    border="0" alt="smile.gif" /> and i'll try to explain better. Thanks //Feelay....
  6. Warning: Mysql_result(): Supplied Argument Is Not A Valid Mysql Result Resource In ...
    This Is for My attack Script. (4)
    Hey. I am making a "Version 2.0" For my attack script, but I can't make it work. This is the
    error I am gettin: Warning: mysql_result(): supplied argument is not a valid MySQL result resource
    in And here is the code: CODE $dbQueryHealth = mysql_query("SELECT temphealth FROM
    characters WHERE user =". $_POST ."");           $currentHealth = mysql_result($dbQueryHealth, 0);
            $dbQueryExp = mysql_query("SELECT exp FROM characters WHERE user = ".$_POST ."");  
            $currentExp = mysql_result($dbQueryExp, 0); I have checked the PHP Manual,....
  7. Warning: Mysql_num_rows()
    What is the error :S (1)
    Hey! I've made a register script.. Some time ago it worked. And I ain't sure if I changed
    something since then.. The error I am getting is this: Warning: mysql_num_rows(): supplied argument
    is not a valid MySQL result resource in /home/feelay/public_html/regcheck.php on line 31 Here is
    the code on theese lines: CODE $sqlCheckForDuplicate = "SELECT username FROM user WHERE username
    = '". $username ."'";                 if( mysql_num_rows( mysql_query(
    $sqlCheckForDuplicate ) ) == 0 )         {             $sqlRegUser =     "INSERT INTO            ....
  8. Anyone Know Of A Really Good Mysql Class?
    Looking for something easy but full featured. (4)
    Generally speaking, when I write a script, it either utilizes the MySQL class of the parent system
    (like Mambo or Joomla) or I use basic functions and snippets to perform the database queries I need.
    I really like the Joomla database class as it allows you to simply pass a regular query string to
    it and the data is returned without the need for extra work! The Invision Power Board (IPB)
    database class which is what is used for this forum is kind of a pain to use since it wants the
    query string in a non-MySQL standard format. Nonetheless, it does work and I could use i....
  9. Making Animated Gifs
    (5)
    Is it possible to make animated images using PHP's GD library? I've done searches, and I
    can't find anything that explains it fully, or doesn't need you to download a special
    program, which obviously, I couldn't use with Astahost. Can anyone help? I'm not aure how
    animated gifs work, I don't know if all the frames are compressed within the .gif file as
    separate images, or whether it's structured another way.....
  10. Extracting Mysql Maths Using Php
    (2)
    Right, this is a really simple thing and it has me completely stumped. I'm working on this mini
    maths function and for some reason i cannot seem to do some simple math process using mysql. This is
    the code: (php btw), now assume that $date is actually a defined mysql date variable already
    successfully extracted. $sql = mysql_query("SELECT TO_DAYS('CURDATE()') -
    TO_DAYS('$date')"); while ($row = mysql_fetch_array($sql)){ $diff = $row ; } Can
    anyone spot what im doing wrong becuase im just thrown by it.....
  11. Bbcode Help
    Making BBCode (9)
    OK well I wanted to add some BBCode to my website but I ran into trouble. At first I was useing str_
    replace() but that does not work if I am trying to make the   
     code. I think I would use preg_match but I am real confused. Could someone post the source code to 
    make: CODE Website   Into: CODE Website Also how would I make the code tag so it
    would replace all withen the two strings with [ and ] example CODE would print the
    html CODE [b] [/b] Do you get what I am trying to do? Thanks, Sparkx Note: I had
    to take out so....
  12. Too Many Connections?
    mysql_connect() (4)
    I uploaded my PHP game yesterday, and most of my friends tried it out. After a while, I tried to
    play as well but it said that mysql_connect() had too many connections already. Can anyone tell me
    how to increase the amount of connections or maybe the total amount of connections allowed?....
  13. Php/mysql And Manual Page Caching?
    (4)
    I am hopefully about to attempt this on the news page of my new site. Every bit counts as far as
    I'm concerned and not having "news" portion of my news page re-php and re-mysql everything where
    there is no chance seems like a waste. I'm looking for good articles, information or tips on
    the process (if I fail to find any good information as I'm looking through now). The way I see
    it right now, I have most of my page split up in header, content (some static html in here before
    dynamic contend and then a little more static html to close it off) and then a foo....
  14. Sql Injection Prevention (passing Numerical Data Across Pages).
    PHP/mySQL (9)
    Even if your building something as simple as a basic news page for your website, if your passing
    along url variable strings like (mysite/index.php?page=1), you may be vulnerable to SQL injection
    attacks. For cases like these (passing numerical data in url strings), I have a handy dandy little
    function to thwart these attempts silly: CODE // For checking if value is a number, if not
    return 1. function isNum($val) {   if (!is_numeric($val)) { $val = 1; }   return ($val); } I
    have this function, within my functions.php file, which I use as an include in files w....
  15. Making My Album
    problems with rights (3)
    We have to make something in PHP for school, so I decided to make a complete photoalbum. One of the
    things that it can is creating and storing thumbnails, but here is where the problems start. The
    thumbnails have to be stored in a subfolder called 'thumbnails', if this folder doesn't
    exist, my script creates this folder and everything works like it is supposed to be. But it
    doesn't do that the way I want. The folder is made with: CODE mkdir($thumbnail_folder,
    0777); but when I check it via FTP, it is set to 755. Even worse is that I can't acce....
  16. Php Mysql Errors
    Fetching arrays (2)
    I am deciding to make a Multiplayer Online RPG type game. I will be building it off of PHP and MySQL
    to ensure makimum compatibility with Astahost's services (and it makes it easier /wink.gif"
    style="vertical-align:middle" emoid=";)" border="0" alt="wink.gif" />). I have a database setup with
    1 table to hold user data and I have the login system setup properly as well as the registration
    form (obviously). All games of course have something similar to gold, units and points. Because
    this is a turn-based game, I have turns. Now for the problem: I am trying to echo ....
  17. How To Show Serial Nums In PHP Table For Contents Of MySQL DB
    Serial Numbering for output contents of mysql in php table (4)
    Hello there, I'm looking for some education. How would you show the serial numbering for
    outputted contents of mysql database. I used a table created in PHP to output content (i.e. an
    alumni database) and I created a column for S/N, so that at a glance anyone can tell how many
    members have registered. Thanks house. Neyoo....
  18. PHP & MySQL: Displaying Content From A Given ID
    (6)
    Okay so I got this sample link (not working): http://www.acosta.com/joo.asp?id=654 Now suppose
    I have a PHP file that would use MySql in order to get all values in the row where id 654 is found.
    Here's a sample DB: Table: demnyc ______________________________________ | id |
    Name | Age | Email | *----------------------------------------------------* | 1
    | Albert | 17 | no email |
    *----------------------------------------------------* | 2 | YaPow | 888 |
    no email | |__________....
  19. Vujsa's CMS101 And CMS102 Tutorials
    Where is the link between cms101 & cms102 tutorials (4)
    I have read Vujsa's tutorials on cms101 and cms102. As a beginner to cms, php and mysql this
    tutorial has been very helpful. Thanx for Vujsa, really appreciate what you've done for guys
    like. But I have had a problem with the missing links. How do I integrate this tutorial with tables
    I create in php/mysql database. I understand the includes, the problem is with the files I would
    have create in mysql table. How do I link to those files using includes and is there a management
    page for the files I create using mysql. Thank you as I await your reply.....
  20. Re-order MySQL Table
    (11)
    Hello you all, I've got a question /smile.gif" style="vertical-align:middle" emoid=":)"
    border="0" alt="smile.gif" /> Let's say I have a database width the table "news". It contains
    about 10 items which is ordered by the field "id". Now from my admin page i do this: CODE
    mysql_query("DELETE FROM news WHERE id=4"); ?> And a few days later i do: CODE
    mysql_query("DELETE FROM news WHERE id=7"); ?> Now there are two gaps in the table => 1, 2, 3,
    5, 6, 8, 9, 10 (no 4 and 7). It want to reallocate the whole table to fill the gaps like this => 1,
    2,....
  21. Need MySQL Alternative To The Syntax "or die()"
    (9)
    Hello again /smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />
    I'm facing a problem with PHP and MySQL... I want, when a MySQL error occurs, to let the script
    continue. Here's the script: CODE $query = "SELECT * FROM menus ORDER BY id ASC";
    $menus_result = mysql_query($query) or die("Error!"); while( $menu=mysql_fetch_array($menus_result)
    ) {    echo $menu ." "; } Now if the table "menus" doesn't exist, this would echo "Error!"
    where it's placed and terminate the whole script. But I want it to echo "Error!" and....
  22. Php Question Re Adding A Link
    inside a top frame (2)
    I have a directory site that someone else programmed for me a couple of years ago. I have been
    making my own modifications to the script, and generally not running into many issues, since the
    changes are usually pretty basic. When a visitor clicks on a category, it takes them to a category
    page which lists all the sub categories, and under each category is a list of the links in it. When
    you click on one of the links, it takes you to a frame page. I have a tiny frame across the top
    which allows them to stay within the site. (Q) I would like to add a tiny link in my ....
  23. Need Help With Php/mysql And Web Servers Such As Asta's.
    (4)
    Within my site I have built my own basic forum using PHP/Mysql, I always test locally now both using
    EasyPHP and WAMP5 which both give me no problems what so ever. But when I tryed to run the exact
    same code on Asta's hosting services (and possible another I used to use) when creating a new
    thread or adding a reply to an existing one it *sometimes* adds an additional thread/reply as a
    Guest (someone not signed in) with an empty message. This would lead me to believe that somehow the
    page is being refreshed and the variables sent to the database update php file are ....
  24. Important: Basics Of Using PHP And MySQL
    (10)
    I generally notice confusion with new users to PHP and or MySQL and first of all I believe that
    unlike HTML which is automatically associated with a IE browser in a Microsoft system. HTML is
    automatically rendered with whatever browser is the default browser, be it Internet Expolrer Firefox
    Netscape or any other browser that has been set. PHP is a different matter to view the output of a
    PHP file it must be run on a webserver, and if you do not have one set up on your local PC it simply
    will not work. (Note serverside langauge requies a server) HTML is client side and ....
  25. How Do You Create A Secure Loging?
    with PHP and mySQL (4)
    I've read a few articles, and looked up the code of certain files and some of them seem to work
    differently. I'm trying to create a login script, which would require PHP and mySQL to run,
    however, I'm not quite sure how to approach it since I'm only just learning PHP. I'd
    like to know, what is the most secure and effective login? I've heard you can add a salt to
    encrypted passwords, etc, and well as using sessions (sid). It's just like to know what methods
    are best for creating a secure login script. Thank yo ufor readin this. ....
  26. [php] Index.php?section=xx&pag=yy
    No MySQL or any other database (6)
    Hi everybody. This is my 3rd script, but this dont use MySQL It does this: divide the site in
    SECTIONS and PAGES. Benefits: -You have to create just the text of your pages, no create ech page
    with the entire layout again. -If its just the text that is included, you just have to have one page
    with the layout, witch is the INDEX.PHP. -If you chanche the layout in the index.php, you DONT HAVE
    TO change in the other pages. Here is the code: CODE
    //-----------------------------------------// //ACAF Paginação                           //
    //by Alexandre Cisneiros    ....
  27. [PHP + MySQL] Encrypting Data
    To protect the password of your DB, for example. (13)
    Hi! This is my 2nd code of PHP + MySQL. This code is VERY simple: it encript the data in the MySQL
    DB. Here we go! ------------------------------------------------------------------------ CODE
    $password = "abc"; $new_password = md5($password); echo $new_password; ?> The password "abc"
    was codfied using md5() This will be: 900150983cd24fb0d6963f7d28e17f72 CODE $normal_pass =
    "abc"; $encripted_pass = "900150983cd24fb0d6963f7d28e17f72"; if(md5($normal_pass) ==
    $encripted_pass)   echo "Login Sucessful!"; else   echo "Incorrect password."; ?> This c....
  28. Need Some Help Using PHP & MySQL
    (4)
    I wonder if its possible or if anyone know how to : I'm making a website for my soccer team
    and every week there are new news, but in the index file i only show some part of the text and the
    rest of the news is in Stored in Database, of course that all news are inside mysql database, i only
    set a script to get from the Database the text and title and so. My doubt is if there is some how to
    attach a link to that news and when i run the link, this show me another page but with FULL news
    text ? i Read something like, i've to create a cicle CODE   ....
  29. Need Help With A PHP - MySQL Registration Script
    Wont INSERT into the database (13)
    hey well can some one helpme make this code work it won't INSERT INTO THE DATABSE CODE #
    register1.php # common include file to MySQL include("DB.PHP"); $Username=$_POST ; $Password=$_POST
    ; $Name=$_POST ; $Last=$_POST ; $Sex=$_POST ; $Month=$_POST ; $Day=$_POST ; $Year=$_POST ;
    $Adresse=$_POST ; $City=$_POST ; $State=$_POST ; $Zipcode=$_POST ; $Country=$_POST ; $Phone=$_POST ;
    $Email=$_POST ; $Father_Name=$_POST ; $Mother_Name=$_POST ; $Parent_Phone=$_POST ;
    $Parent_Email=$_POST ; $Level=$_POST ; $Academic=$_POST ; $Image_Link=$_POST ; $sql9="INSERT INTO
    U....
  30. MySQL & PHP coding
    (9)
    So it seems as though the php docs make it very clear that mysql and mysqli functions will all
    connect to the database as a latin1 client. Although i have my server set up with utf8 databases,
    tables and fields and the default client connection is utf8, php still connects as latin1. My
    xhtml forms and pages are all utf-8, so when i post utf8 data and insert it into the database the
    connection assumes that incoming data is latin1 and the data that gets placed in the database is
    invalid. phpMyAdmin seems to be able to view, add, edit, and retrieve utf8 strings in the d....

    1. Looking for making, link, mysql, query

See Also,

*SIMILAR VIDEOS*
Searching Video's for making, link, mysql, query
Similar
Can't Make This Query Working.
Letting Users Add Mysql Data With Php
Making A Value In A Textbox Stay
Mysql Question(inserting Number From A Textfield)
Making Something In Mysql Happen Only Once
Warning: Mysql_result(): Supplied Argument Is Not A Valid Mysql Result Resource In ... - This Is for My attack Script.
Warning: Mysql_num_rows() - What is the error :S
Anyone Know Of A Really Good Mysql Class? - Looking for something easy but full featured.
Making Animated Gifs
Extracting Mysql Maths Using Php
Bbcode Help - Making BBCode
Too Many Connections? - mysql_connect()
Php/mysql And Manual Page Caching?
Sql Injection Prevention (passing Numerical Data Across Pages). - PHP/mySQL
Making My Album - problems with rights
Php Mysql Errors - Fetching arrays
How To Show Serial Nums In PHP Table For Contents Of MySQL DB - Serial Numbering for output contents of mysql in php table
PHP & MySQL: Displaying Content From A Given ID
Vujsa's CMS101 And CMS102 Tutorials - Where is the link between cms101 & cms102 tutorials
Re-order MySQL Table
Need MySQL Alternative To The Syntax "or die()"
Php Question Re Adding A Link - inside a top frame
Need Help With Php/mysql And Web Servers Such As Asta's.
Important: Basics Of Using PHP And MySQL
How Do You Create A Secure Loging? - with PHP and mySQL
[php] Index.php?section=xx&pag=yy - No MySQL or any other database
[PHP + MySQL] Encrypting Data - To protect the password of your DB, for example.
Need Some Help Using PHP & MySQL
Need Help With A PHP - MySQL Registration Script - Wont INSERT into the database
MySQL & PHP coding
advertisement



Making A Link = Mysql_query

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