Click here to Skip to main content
15,918,193 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Virtual keyboard using JSP Pin
The Man from U.N.C.L.E.5-Dec-09 5:03
The Man from U.N.C.L.E.5-Dec-09 5:03 
GeneralRe: Virtual keyboard using JSP Pin
Amanda Grey8-Dec-09 21:37
Amanda Grey8-Dec-09 21:37 
Question[Message Deleted] Pin
emurf2-Dec-09 10:29
emurf2-Dec-09 10:29 
AnswerRe: Web Service Call Errors Before It Finishes Pin
David Skelly2-Dec-09 22:22
David Skelly2-Dec-09 22:22 
RantRe: Web Service Call Errors Before It Finishes Pin
emurf3-Dec-09 3:26
emurf3-Dec-09 3:26 
GeneralRe: Web Service Call Errors Before It Finishes Pin
David Skelly3-Dec-09 3:39
David Skelly3-Dec-09 3:39 
GeneralRe: Web Service Call Errors Before It Finishes Pin
Ashfield3-Dec-09 4:04
Ashfield3-Dec-09 4:04 
GeneralRe: Web Service Call Errors Before It Finishes Pin
emurf3-Dec-09 4:13
emurf3-Dec-09 4:13 
GeneralRe: Web Service Call Errors Before It Finishes PinPopular
Ashfield3-Dec-09 4:23
Ashfield3-Dec-09 4:23 
GeneralRe: Web Service Call Errors Before It Finishes Pin
The Man from U.N.C.L.E.5-Dec-09 5:10
The Man from U.N.C.L.E.5-Dec-09 5:10 
GeneralRe: Web Service Call Errors Before It Finishes Pin
Paul Conrad8-Dec-09 5:39
professionalPaul Conrad8-Dec-09 5:39 
GeneralRe: Web Service Call Errors Before It Finishes Pin
Paul Conrad8-Dec-09 5:41
professionalPaul Conrad8-Dec-09 5:41 
QuestionBack Button on Popup Window doesn't work in IE Pin
sam#2-Dec-09 0:48
sam#2-Dec-09 0:48 
AnswerCROSSPOST Pin
Richard MacCutchan2-Dec-09 1:58
mveRichard MacCutchan2-Dec-09 1:58 
GeneralRe: CROSSPOST Pin
sam#2-Dec-09 2:20
sam#2-Dec-09 2:20 
GeneralRe: CROSSPOST Pin
Richard MacCutchan2-Dec-09 2:46
mveRichard MacCutchan2-Dec-09 2:46 
QuestionMS Visual Web Developer 2008 Express Edition Pin
jeffb11-Dec-09 13:53
jeffb11-Dec-09 13:53 
AnswerRe: MS Visual Web Developer 2008 Express Edition Pin
John Bracey1-Dec-09 21:27
John Bracey1-Dec-09 21:27 
QuestionCustom User Control Suggestions Needed Pin
ken99830-Nov-09 8:15
ken99830-Nov-09 8:15 
QuestionAccessing SQL Database From difference Client PCs Pin
jeshra27929-Nov-09 20:24
jeshra27929-Nov-09 20:24 
AnswerCROSS POST Pin
dan!sh 29-Nov-09 21:51
professional dan!sh 29-Nov-09 21:51 
GeneralRequest on Soa, SaaS, SoapUI, and Web services Pin
Rajesh557529-Nov-09 19:08
Rajesh557529-Nov-09 19:08 
GeneralRe: Request on Soa, SaaS, SoapUI, and Web services Pin
dheeraj01-Dec-09 22:46
dheeraj01-Dec-09 22:46 
Questionhow can I understand which limk is clicked in previous page? Pin
hande5428-Nov-09 9:53
hande5428-Nov-09 9:53 
AnswerRe: how can I understand which limk is clicked in previous page? Pin
Marc Firth29-Nov-09 8:01
Marc Firth29-Nov-09 8:01 
you could add a variable to the url you use eg

<a href="mycart.php?item=shoes">My Item</a>


and then access it using php. e.g:


mycart.php:

<?php
$item = $_GET['item'];
echo $item;
?>


or the asp equivalent.

If you are using javascript perhaps you could create an array of items you can add more items to. You'd be better off handling it server side though (php).

BTW there's a PHP forum on CP.


General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.