Jump to content

Variable Declaration / Initiation


aball65

Recommended Posts

Clicking the Q/PL button as defined by the following HTML:

<td>
<form>
<input class="mediumbutton" type="button" value="Q P/L"
onClick=popQIPLWindow(02132006205725) title="Query Parts and Labor">
</td>
</form>

and Javascript:

function popQIPLWindow(rcvnum)
{
var varrcvnum=parseInt(rcvnum);
url = 'http://localhost/lawnmower/qipl.php?rcv_num=' + varrcvnum
window.open(url,'mywindow','left=525 width=475,height=320,resizable=yes,scrollbar=yes,location=yes');
return true;
}

results in the following screen pop 75% of the time:

[a href=\"http://localhost/lawnmower/qipl.php?rcv_num=2132006210949\" target=\"_blank\"]http://localhost/lawnmower/qipl.php?rcv_num=2132006210949[/a]


and the following screen pop 25% of the time:

[a href=\"http://localhost/lawnmower/qipl.php?rcv_num=149520190421\" target=\"_blank\"]http://localhost/lawnmower/qipl.php?rcv_num=149520190421[/a]

The following is the screen pop I need:

[a href=\"http://localhost/lawnmower/qipl.php?rcv_num=02132006210949\" target=\"_blank\"]http://localhost/lawnmower/qipl.php?rcv_num=02132006210949[/a]

Any help would be greatly appreciated - Thanks.
Link to comment
https://forums.phpfreaks.com/topic/3416-variable-declaration-initiation/
Share on other sites

[!--quoteo(post=345555:date=Feb 14 2006, 02:16 AM:name=aball65)--][div class=\'quotetop\']QUOTE(aball65 @ Feb 14 2006, 02:16 AM) [snapback]345555[/snapback][/div][div class=\'quotemain\'][!--quotec--]
Clicking the Q/PL button as defined by the following HTML:

<td>
<form>
<input class="mediumbutton" type="button" value="Q P/L"
onClick=popQIPLWindow(02132006205725) title="Query Parts and Labor">
</td>
</form>

and Javascript:

function popQIPLWindow(rcvnum)
{
var varrcvnum=parseInt(rcvnum);
url = 'http://localhost/lawnmower/qipl.php?rcv_num=' + varrcvnum
window.open(url,'mywindow','left=525 width=475,height=320,resizable=yes,scrollbar=yes,location=yes');
return true;
}

results in the following screen pop 75% of the time:

[a href=\"http://localhost/lawnmower/qipl.php?rcv_num=2132006210949\" target=\"_blank\"]http://localhost/lawnmower/qipl.php?rcv_num=2132006210949[/a]
and the following screen pop 25% of the time:

[a href=\"http://localhost/lawnmower/qipl.php?rcv_num=149520190421\" target=\"_blank\"]http://localhost/lawnmower/qipl.php?rcv_num=149520190421[/a]

The following is the screen pop I need:

[a href=\"http://localhost/lawnmower/qipl.php?rcv_num=02132006210949\" target=\"_blank\"]http://localhost/lawnmower/qipl.php?rcv_num=02132006210949[/a]

Any help would be greatly appreciated - Thanks.
[/quote]

localhost links won't work over the web I'm afraid. Substitute your IP address in its place.
[b]Change this:[/b]
<input class="mediumbutton" type="button" value="Q P/L"
onClick=popQIPLWindow(02132006205725) title="Query Parts and Labor">

[b]to this [/b](send a string to the onClick function):
<input class="mediumbutton" type="button" value="Q P/L"
onClick=popQIPLWindow("02132006205725") title="Query Parts and Labor">

[b]AND change this:[/b]
function popQIPLWindow(rcvnum)
{
var varrcvnum=parseInt(rcvnum);
:
:

[b]to this:[/b]
function popQIPLWindow(rcvnum)
{
var varrcvnum=rcvnum;
:
:


I think that would give you the right value..

/micke


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.