SunQuest
 
           PHP Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsProgrammingPHP Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
Free Web 2.0 Code Generator! Generate data entry and reporting .NET Web apps in minutes. Quickly create visually stunning, feature-rich apps that are easy to customize and ready to deploy. Download Now!
  #1  
Old August 20th, 2004, 06:19 AM
kubendran kubendran is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Sep 2003
Posts: 9 kubendran User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 37 m 15 sec
Reputation Power: 0
Question using hyperlinks with php

hello,

I am using set of hyperlinks for some online journals.

While I click a particular link, the journalcode/hyperlink code , local IP address should be stored in a MySql database.

Eg.

<H5><A href="http://www3.us.elsevierhealth.com/ajog/" target="_blank">
<B>1. American Journal of Obstetrics and Gynecology</B></A></H5>
<H5><A href="http://www3.us.elsevierhealth.com/jpeds/" target="_blank" >
<B>2. The Journal of Pediatrics</B></A></H5>
<H5><A href="http://jama.ama-assn.org" target="_blank">
<B>3. JAMA </B></A></H5>


anybody help pls

Reply With Quote
  #2  
Old August 20th, 2004, 06:50 AM
Itsacon's Avatar
Itsacon Itsacon is offline
Command Line Warrior
Click here for more information
 
Join Date: Aug 2004
Location: Sector ZZ9 Plural Z Alpha
Posts: 956 Itsacon User rank is Lance Corporal (50 - 100 Reputation Level)Itsacon User rank is Lance Corporal (50 - 100 Reputation Level)Itsacon User rank is Lance Corporal (50 - 100 Reputation Level)  Folding Points: 650865 Folding Title: Super Ultimate Folder - Level 2Folding Points: 650865 Folding Title: Super Ultimate Folder - Level 2Folding Points: 650865 Folding Title: Super Ultimate Folder - Level 2Folding Points: 650865 Folding Title: Super Ultimate Folder - Level 2Folding Points: 650865 Folding Title: Super Ultimate Folder - Level 2Folding Points: 650865 Folding Title: Super Ultimate Folder - Level 2Folding Points: 650865 Folding Title: Super Ultimate Folder - Level 2
Time spent in forums: 6 Days 8 h 23 m 32 sec
Reputation Power: 4
Send a message via ICQ to Itsacon
I'd try the following, replace all url's in question with ones like this:
Old: <A href="http://www3.us.elsevierhealth.com/ajog/" target="_blank">
New: <a href="redirect.php?target_url=http://www3.us.elsevierhealth.com/ajog/" target="_blank">

redirect.php contains the following code:
PHP Code:
<?php

# get info to store;
$target $_GET['target_url'];
$caller_ip $_SERVER['REMOTE_ADDR'];

# connect to mysql
@mysql_connect(/* your connection info here */);
@
mysql_select_db(/* database name here */);

# store info
@mysql_query("INSERT INTO table_name (ip_addres, target_url) VALUES ('".$caller_ip."', '".$target."')");

# go to page
header("Location: ".$target);

# make sure nothing else happens
exit();
?>


Hope this helps.

Reply With Quote
  #3  
Old August 21st, 2004, 03:46 AM
kubendran kubendran is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Sep 2003
Posts: 9 kubendran User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 37 m 15 sec
Reputation Power: 0
Thanx Mr.Itascon. It's working fine.

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsProgrammingPHP Development > using hyperlinks with php


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway