Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #2K
~7K People Reached
Interests
Music,Chess,Programming
Favorite Forums

33 Posted Topics

Member Avatar for divyakrishnan

Sending Email required hosting server. You cannot send mails using localhost.

Member Avatar for dean8710
0
94
Member Avatar for mbhanley

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]

Member Avatar for mbhanley
0
301
Member Avatar for jhaque

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]

Member Avatar for jhaque
0
95
Member Avatar for nevergone

You can visit following to get SSL certificates [URL="http://www.clickssl.com"]Clickssl[/URL] [URL="http://www.geotrust.com"]GeoTrust[/URL]

Member Avatar for Ramesh.KR
0
85
Member Avatar for chicagoan

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]

Member Avatar for branding4you
0
293
Member Avatar for vssp

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 …

Member Avatar for chintan@dani
0
238
Member Avatar for chintan@dani

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...

0
75
Member Avatar for joshisumitnet

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]

Member Avatar for joshisumitnet
0
416
Member Avatar for lulatam

You can put the condition if $checkbox contains item then use implode otherwise just avoid using implode...

Member Avatar for chintan@dani
0
59
Member Avatar for chintan@dani

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..

0
112
Member Avatar for chintan@dani

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 …

Member Avatar for Taywin
0
215
Member Avatar for SunnySideUp

Following link will solve your Problem [URL="http://www.w3schools.com/PHP/php_ajax_livesearch.asp"]Live Search[/URL]

Member Avatar for sleign
0
235
Member Avatar for nyler01

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();

Member Avatar for nyler01
0
90
Member Avatar for ivan3510
Re: Chat

Try this attachment. There are many scripts available. Try to search.

Member Avatar for ivan3510
0
128
Member Avatar for s2xi

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]

Member Avatar for SolidSolutions
0
152
Member Avatar for dannynez

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.

Member Avatar for pzuurveen
0
129
Member Avatar for tonvlad

why you are using list()? to retriev result fro the explode("'",$des); just store in variable... It will work....

Member Avatar for dddougal
0
252
Member Avatar for tashaX

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.

Member Avatar for chintan@dani
0
87
Member Avatar for chintan@dani

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 …

Member Avatar for chintan@dani
0
1K
Member Avatar for harapanahallipr

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]

Member Avatar for chintan@dani
-1
55
Member Avatar for nikita.chandra

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.

Member Avatar for chintan@dani
0
83
Member Avatar for ujjval dave

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.

Member Avatar for ujjval dave
0
182
Member Avatar for aizel

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]

Member Avatar for chintan@dani
0
83
Member Avatar for sritina

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.

Member Avatar for chintan@dani
0
71
Member Avatar for sami.asanga

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???

Member Avatar for hielo
0
67
Member Avatar for niths

Hello Niths Try the following link [url]http://www.dayanahost.com/phponline.cfm[/url] It provides full features for live support system.

Member Avatar for chintan@dani
0
153
Member Avatar for emilcarlo

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

Member Avatar for FlashCreations
0
160
Member Avatar for chintan@dani

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?

Member Avatar for pritaeas
0
83
Member Avatar for anony

Hello Anony Other possible reason to error would be different password. Is it same on your pc & from website? Is the database named correctly??

Member Avatar for pritaeas
0
351
Member Avatar for druveen

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.

Member Avatar for metalix
0
625
Member Avatar for dandixon

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]

Member Avatar for chintan@dani
0
119
Member Avatar for CreativeCoding

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?

Member Avatar for chintan@dani
0
589
Member Avatar for keval_hack

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 …

Member Avatar for swi2
0
121

The End.