Jump to content

Help with PHP Variable


Scolez

Recommended Posts

 

 

A variable is declared in index.php when the page loads (random number). When the user clicks on a link, I need to make a MySQL query with the variable. How would I do this?

 

When I ran the code with javascript ($.get("run.php");return false;) it doesn't recognize the variable.

 

I think I have to use Ajax but I just really dont know how that works, I just started PHP and MySQL a few days ago.

 

Help?

 

Link to comment
https://forums.phpfreaks.com/topic/280739-help-with-php-variable/
Share on other sites

If I'm understanding correctly, you need to send the random number back to the server when the user clicks the link? Something like this?

<?php

if (isset($_GET['rn']))
{
    mysql_query('SELECT * FROM table WHERE rn = '.$_GET['rn']);
}


$rn = rand();

echo '<a href="?rn='.$rn.'">random number link</a>';

?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.