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
~20.4K People Reached
Favorite Forums
Favorite Tags

16 Posted Topics

Member Avatar for debasisdas

The best way to forget ur girlfriend,:sad: is to love her sister.. :*

Member Avatar for James_28
8
17K
Member Avatar for sam023

this code wil help u to check the text box for only letters.. [CODE] if (!FormName.text.value.match(/^[a-zA-Z]+$/)) { alert("Please Enter only letters in text"); } [/CODE] the expression in the If condition checks for only alphabets..

Member Avatar for chandsir
0
137
Member Avatar for smvec

hi.. im dynamicelly creating text box in a html file using javascript.. [CODE]<script> function create_input_boxes() { if(document.getElementById("name0")) { return true; } var boxes=""; var num_boxes=document.getElementById("num_boxes").value; if(num_boxes) { for(var i=0;i<num_boxes;i++) { boxes+="<input id='name"+i+"' name='name"+i+"' value=''><br />"; } document.getElementById("textbox_container").innerHTML=boxes; } return false; } </script> </head> <body> <form id="theForm" action="dynamic.php" method="post" onsubmit="return create_input_boxes();"> …

Member Avatar for smvec
0
95
Member Avatar for smvec

hi, im a newbie developer.. i developer a website in php n hosted it.. when im trying to access it i get an error.. You do not have permission to view this directory or page due to the access control list (ACL) that is configured for this resource on the …

Member Avatar for network18
0
100
Member Avatar for smvec

hi.. im trying to send email to the user who register to my website.. SMTP server response: 501 5.5.4 Invalid Address in D:\Domains\lelys.org\wwwroot\reg_save.php on line 66 this is the error im getting.. [CODE]if($res) { //echo "record added"; //$count = 1; $to = $mail; $sub = "Confirm Mail From LeLys"; $header …

Member Avatar for network18
0
111
Member Avatar for digtokiller

hi.. me too want to knw info abt this.. goto paypal developer site.. they give u free accounts to check this kind of transactions.. after a payment has been made in paypal a id wil be generated, check for this id on the landing page.. so u can validate the …

Member Avatar for digtokiller
0
141
Member Avatar for MDanz

hi.. if u have the page nos. stored in the database.. u can just query it, n take the last no. then create a link out of it, where u need it..

Member Avatar for smvec
0
67
Member Avatar for kanjigirl

hi try using the style="visibility:hidden" option in the DIV tag.. it shud be helpful

Member Avatar for nauticalmac
0
2K
Member Avatar for mundetas

[CODE]<select name="studid" id="jumpMenu" > <option value="Select">Select</option> <?php while($rows = mysql_fetch_array($result)) { ?> <option value="<?php echo $rows['userid']; ?>"><?php echo $rows['userid']; ?></option> <?php } ?> </select>[/CODE] i hope this cud help in filling mysql data in the drop down box.. it works for me.. try it out..

Member Avatar for mundetas
0
94
Member Avatar for smvec

hi.. im trying to validate a registeration form using javascript.. i successfully validated all the textbox individually by using onblur event... but when i click submit button, without entering text, or without even touching the textbox, the Form gets Submitted.. hw can i stop this... plz tell me a solution...

Member Avatar for smvec
0
106
Member Avatar for alex0514

hi.. i can understand ur prob.. after loggin in, did u put your username into the session variable ? if the login is successful, put the username in the session variable, then redirect the user to the profile page.. there u can get the user name from the session variable, …

Member Avatar for alex0514
0
82
Member Avatar for manojjena1982

hi i understood that u need the date difference in hours.. so here it is.. [CODE]$date_diff = $today_date - $prev_date; $fullhours = floor($date_diff/3600); echo "<br>".$fullhours; [/CODE] 2009-09-25 (minus) 2009-09-21 (equals) 96 Hrs

Member Avatar for smvec
0
77
Member Avatar for smvec

im a newbie php developer... i've tried sending an email n receiving the confirmation back for activating the users... here is the email sending code : [CODE]if($res) { echo "record added"; $to = $mail; $sub = "Confirm Mail From LeLys"; $header = "from: admin<[email protected]>"; $message = "confirm link \r\n"; $message.= …

Member Avatar for wilch
0
200
Member Avatar for Salehshame

Try this.. coz i've done thin in my project.. it works for me.. [CODE]$to = "[email protected]"; $sub = "Confirm Mail From LeLys"; $header = "from: adminName<[email protected]>"; $message = "confirm link \r\n"; $message.= "click to activete your account"; $message.= "http://www.domain.org/confirmation.php?key=$ccode"; $sending = mail($to,$sub,$message,$header); if($sending) echo ("email comfirm"); else echo("email not sent");[/CODE]

Member Avatar for sarithak
0
153
Member Avatar for smvec

hi... im trying to insert a row into the database... but the query is not run successfully.. [CODE]$sql = "INSERT INTO temp_db (fname,mname,lname,dob,gender,email,country,phno,mobile,userid,password,mti,rtime) VALUES ('$fname','$mname','$lname','$dob','$gen','$mail','$country','$phno','$mob','$uid','$pass','$mt','$rtime')"; $res = mysql_query($sql) or die("cud not add record"); echo mysql_error();[/CODE] this is the code..... im gettin the error from the Die part of the query.. …

Member Avatar for smvec
0
87
Member Avatar for smvec

hi.. im sending an email to the user, who registers with my site.. the email has a confirmation code.. after the user clicks the confirmation link, he is verified n allowed.. now the problem is, the confirmation email is sent, but. the link in the email is not working properly.. …

0
60

The End.