Problem with passing variables
Posted on
16th Feb 2014 07:03 pm by
admin
I'm not really a php programmer so I'm really struggling with this issue.
I have a banner script that is supposed to send people to an affiliate site and pass the parameters along with it.
For instance: http://www.mydomain.com/had.php?name=Testbanner&url=http://links.affliatesite.com/?s=bubbly&p=ft&c=1&r=23794&j=13&t=treat&src=ads
It doesn't take anything after the &p
I know it's something to do with URL encoding but I can't figure it out.
Here's what the script coding looks like:
<?php
require_once "auth/config.php";
$link = @mysql_connect($hostname, $username,$password);
if($link)
{
$dbcon = @mysql_select_db($dbname,$link);
}
$name = $_GET['name'];
$url = $_GET['url'];
$rip = $_SERVER['REMOTE_ADDR'];
$today = getdate();
//Time of the visit
$time = $today['hours'].":".$today['minutes'].":".$today['seconds'];
//Date of the Visit
$day = $today['year']."-".$today['mon']."-".$today['mday'];
$sss = "insert into stats values('$name','$day','$time','$rip')";
@mysql_query($sss,$link);
?>
<script language=javascript>
document.location.href="<?php echo ($url); ?>";
</script>
I could really use some help. I've tried adding urlencde in several variations and places and just can't get it working.
Thanks!
Your Answer:
Login to answer
59
24
Other forums
Dynamic Data + Sql Server 2005 Enterprise?
Hi! I have just started to learn ASP.NET, and it looks like it is quite a lot to learn. Im not reall
Reditecting pages based on logic
Newbie here, apologies in advance!
I am trying to use the header function to forward one of a
Pagination
Hi All,
I think I'm finally getting somewhere with pagination!
I can now submit a quer
help with email script...
hey
I need help with my mail script
when the form on http://www.mcgdesignstudio.com/c
Web Host List
Here is a list of web hosts that offer PHP and MySQL. It is no where near a full list, but it is mos
How do I send data using an html link
Hi
If I have
<a href="main_file.php">
How do I send data t
Generate multilayered array from string.
ok so i have a string that looks like this:
Code: blog:edit_all,delete_all|users:edit_all,delete_
MASS PM
Hello all, I'm trying to send mass private messages to users in my database but keep getting an erro
help with contest script
I would like to code a contest script to my site but i don't know how. Could someone just give me pu
Switch letters in message (basic cryptology)...
I am trying to switch letters around in a message for an application on my site (see here). The prob