Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for coleguitajuan

Dear Sirs, I have this code to populate a text field: <script type="text/javascript"> window.onload=function() { if (document.getElementById("country")) { document.getElementById("country").onchange=function() { switchme(this); } } } function switchme(SNewSel) { var ind = SNewSel.selectedIndex; var txt = document.getElementById('country_code'); switch (ind) { case 1: txt.value = "+93"; break; case 2: txt.value = "+358"; break; …

0
203
Member Avatar for coleguitajuan

Dear Sirs, The below script is working fine on IE but notin Mozilla, could anyone help on this to be working on Mozilla as well? [CODE]<script type="text/javascript"> window.onload=function() { if (document.getElementById) { document.getElementById("country").onchange=function() { switchme(this); } } } function switchme(SNewSel) { var ind = SNewSel.selectedIndex; var txt = document.getElementById('country_code'); switch …

Member Avatar for coleguitajuan
0
1K
Member Avatar for coleguitajuan

Dear friends, I have this form (raffle_winner_form.htm) with the action in raffle_winner.php: <form name="form1" method="post" action="raffle_winner.php"> <label> Max numbers: <input type="text" name="max"> </label> <p> <label> <input type="submit" name="submit" value="calculate"> </label> </form> **raffle_winner.php** <?php session_start(); $session = session_id(); $number = mt_rand(1,$_POST[max]); ?> My intention is to show the random number in …

Member Avatar for vibhaJ
0
163
Member Avatar for coleguitajuan

Hello, I'm trying to create a form inside another form that it submits it depending on the option you choose on the select field using the js event "onselected="this.form.submit" but Im not familiar how to use it, the initial code is like that: [CODE]<form name="form1" method="post" submit="form1.php"> <form name="form2" method="post" …

0
61
Member Avatar for coleguitajuan

Hello guys, I'm starting to learn Javascript and I'm having trouble combining 3 text fields on a form in order to submit it in a single textfield. For example I have the following texfields: [CODE]<input id="country_code" name="country_code" size="6"> <input id="area_code" name="area_code" size="5"> <input name="hphone" size="9">[/CODE] I want to combine them …

Member Avatar for coleguitajuan
0
129
Member Avatar for coleguitajuan

Dear people, There is any function instead of explode which does not add an index in the beginning of every line? Instead of show: [0] => Number=0 [1] => Number1=1 [2] => Number2=2 Shows like that: Number=0 Number1=1 Number2=2 or some function that removes the [0], [1],[2]... Thanks in advance! …

Member Avatar for coleguitajuan
0
117
Member Avatar for coleguitajuan

How can I extract from a form url f.e: [url]https://process.netpay-intl.com/member/remote_charge.asp[/url] which dones not shows any parameter in the url but when you submit the form, it shows you the parameters in the page? Thanks in advance, Daniel

Member Avatar for somedude3488
0
70
Member Avatar for coleguitajuan

Hi all! Im trying to creat thecode for save a value into a variable ($sales_code) formed per 2 letters (VW, DF, RK or DI) depending on this algorithm: 79% of the time it's VW, 7% of the time it's DF, 7% of the time it's RK, 7% of the time …

Member Avatar for Menster
0
107