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
Ranked #3K
~502 People Reached
Favorite Forums
Favorite Tags
Member Avatar for TechySafi

[CODE]$data = "email@yahoo.com,go@gmail.com,example@example.com"; list($email1, $email2, $email3) = explode(",", $data); echo $email1; // email@yahoo.com echo $email2; // go@gmail.com [/CODE] Pretty perfect but my problem is I don't know how many email addresses will be inserted by a user. He can input just 1/2 or even 30/40. So the style of below …

Member Avatar for TechySafi
0
116
Member Avatar for amazed

Hi I have LAMP stack as server and doing my development work on windows. What version system would be perfect in this scenario? Thanks

Member Avatar for mschroeder
1
103
Member Avatar for wasimmalik

I have written this code for page hits cout its working perfectly ok on my pc but when i uploaded it on my site it show error any body help me in this issue [CODE]<?php $cnt = "hits.txt"; $h = @fopen($cnt, 'r') or die("can't open file"); $x=@fread($h,10); $h1 = @fopen($cnt, …

Member Avatar for wasimmalik
0
148
Member Avatar for zeuz

Hi everyone My intention is to enable NTLM authentification when using the native PHP SOAP client, Most of the code is copied from an php.net manual example and it is said to be working. I'm trying to override the __doRequest function in the SoapClient class and let it use cURL. …

0
135