- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
- Interests
- Music,Chess,Programming
33 Posted Topics
Re: Sending Email required hosting server. You cannot send mails using localhost. | |
Re: Try this . I think you had not used join correctly. [CODE]"SELECT c.cat_id, c.cat_title, s.subcat_id, s.subcat_title, s.cat_id FROM categories AS c LEFT JOIN subcategories AS s ON c.cat_id = s.cat_id ORDER BY subcat_id ";[/CODE] | |
Re: you are doing wrong while creating xmlHttpRequest. for IE you have to create it like xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); Again you are taking responce from xmlhttp.onreadystatechange which is not correct. ajax will give you responce for xmlhttp.readyState=2 or 4 in xmlhttp.responseText. Take a Reference from here. [URL="http://www.w3schools.com/php/php_ajax_php.asp"]Ajax PHP[/URL] | |
Re: You can visit following to get SSL certificates [URL="http://www.clickssl.com"]Clickssl[/URL] [URL="http://www.geotrust.com"]GeoTrust[/URL] | |
Re: You are tring to develop slideshow of images..or rotation at specified interval. Here you will find many patterns for image rotation. [URL="http://www.dynamicdrive.com/dynamicindex4/index.html"]Dynamicdrive[/URL] | |
Re: Hello VSSP. I have solution to your problem. Get [URL="http://ffdshow.faireal.net/mirror/ffmpeg/"]ffmpeg[/URL] Now Extract it to your folder. The Following Code will show you how you can get duration of Video file. That one worked for me. [CODE] $file= "127808825101 Track 1.wma"; ob_start(); passthru("ffmpeg.exe -i \"{$file}\" 2>&1"); //path to your ffmpeg.exe $duration … | |
Hello [B]PHP Experts,[/B] I am looking for the application in my site, which allows users of my site to invite their friends from facebook? How can i implement this? Plz reply, Any Help will be appriciated... | |
Re: Hello Sumit, I don't know the exact solution to you problem but the following link may be useful to you.[URL="http://www.php.net/manual/en/function.session-set-save-handler.php"] Session logout[/URL] [URL="http://codeigniter.com/forums/viewthread/83360/#672702"]Forum[/URL] | |
Re: You can put the condition if $checkbox contains item then use implode otherwise just avoid using implode... | |
Hello Everybody, My site [url]www.mygospellove.com/[/url] is https based. It works fine in all major browsers but it shows system information message in IE. It shows site contains secure & nonsecure items. How i can resolve this issue..? Any help will be appreciated.. | |
Hello Experts, I am developing application in which i use ajax.but i need to pass more than one variable to url for further processing. I can't use [CODE] var url="availabilitycheck.php?t="+value //it works var url="availabilitycheck.php?t="+value+"&hid="+hd1+"&chkin="+chkin; //not valid[/CODE] How can i send other variables.?? I tried using session that works but it … | |
Re: Following link will solve your Problem [URL="http://www.w3schools.com/PHP/php_ajax_livesearch.asp"]Live Search[/URL] | |
Re: You can achieve this using javascript. suppose your for name is frm and 'input' name is txtbox. you can set using document.frm.txtbox.focus(); | |
| |
Re: Do you mean to say you are using large number of inputs with same name? If so use <input type="text" id="first_name[]" name="first_name[]" /> Then you can retrieve all values in first_name[] by counting it as an array. Ex [CODE]$var=$_post['first_name']; for($i=0;$i<count($var);$i++) { echo $var[$i]; } [/CODE] | |
Re: Or even this error may occure if you are using white-space before <?php & after ?>. Look for any statements that could send output to the user before this header statement. If you find one or more, find some way to move the header statement before them. | |
Re: why you are using list()? to retriev result fro the explode("'",$des); just store in variable... It will work.... | |
Re: There is no problem in your javascript code. but don't break following code in lines manually. window.open("http://www.maps.google.com","_blank","toolbar=yes,location=yes, directories=no, status=no, menubar=yes, scrollbars=yes,resizable=no, copyhistory=yes, width=400, height=400"); It will work. | |
Hello Readers I am trying to create Categorytree.In which i want to display subcategories under its parent category.I got the code to develop category tree that display using <ul><li> but i want to display it in dropdown. How can i do that? For Example Parent1 __Child1-Parent1 __Child2-Parent1 __|__Child1-Child2-Parent1 Parent2 __Child1-Parent2 … | |
Re: You can do this using Ajax. Call Ajax Function onchange Event of select box. For Ex. [URL="http://www.w3schools.com/PHP/php_ajax_database.asp"]Go Here[/URL] | |
Re: Hello Nikita If you want to validate latters in the input fields try the following function. [CODE] function isAlphabet(elem, helperMsg){ var alphaExp = /^[a-zA-Z]+$/; if(elem.value.match(alphaExp)){ return true; }else{ alert(helperMsg); elem.focus(); return false; } } [/CODE] Call the above function in your code. for more detail visit signature link. | |
Re: Hello Ujjval I think you should check for the permission to the directory called by '$dirna'. use chmod to check $dirna. You should check $path = "upimg/".$dirna; chmod ($path,0777); then use $add=$path."/".$filename Hope it will work. | |
Re: You can use ajax for that. call ajax function onchangeevent of the dropdownmenu. To show example using ajax [URL="http://www.w3schools.com/PHP/php_ajax_database.asp"]Click Here[/URL] | |
Re: Hello Sritina Use mail function as folows: mail($email_to, $email_subject, $email_message, $headers); For sending email you need HostingServer to send email to anybody. You can not send using localhost even if you are connected to the internet. | |
Re: and On line 14 you are using $cid for $_POST['catId']; and again on 29 same variable is used (isset($_POST['btnModifyCategory'])) $cid = $_POST['catId']; is it working correctly??? | |
Re: Hello Niths Try the following link [url]http://www.dayanahost.com/phponline.cfm[/url] It provides full features for live support system. | |
Re: Hello emilcarlo, I have read your post & code looks difficult for newbies. the logic is correct. I have simple looking pagination script. Go to the link below there you will get an idea.(sign) Thanks & regards, Chintan | |
Hello Friends Is there anybody who can tell me about Jquery? I know why one use Jquery but I want to know how to write jquery as per requirement? | |
Re: Hello Anony Other possible reason to error would be different password. Is it same on your pc & from website? Is the database named correctly?? | |
Re: Are you trying to upload file?? Have you put up enctype="multipart/form-data" in form tag?? Or are you using hidden field that contain specific value?? Check these things & hope you will be able solve your query. | |
Re: Hello Dendixon Here is the code as per you requirement. It is more than 10 digit but you can configure the loop.. [CODE]<?php for ($i=0; $i<7; $i++) { $d=rand(1,30)%2; // echo $d ? chr(rand(65,90)) : chr(rand(48,55)).rand(01,99).$d; $w=$d ? chr(rand(65,90)) : chr(rand(48,55)).rand(01,99).$d; echo $w; } ?> [/CODE] | |
Re: Hello CreativeCoding I have read your post but i can not understand what are you truing to do? Do you want to write password in file ($File)? Is the $newDir path is correct? Have you specify what $newDir contain? | |
Re: To validate Name i think you might require alphabates as string Call this function where you want to validate. [CODE] function isAlphabet(elem, helperMsg)//elem => var fname=document.getElementById('fname') { var alphaExp = /^[a-zA-Z]+$/; if(elem.value.match(alphaExp)){ return true; }else{ alert(helperMsg); elem.focus(); return false; } } [/CODE] Or you can visit the link Hope this … |
The End.