Forum: PHP 23 Days Ago |
| Replies: 8 Views: 310 Yes , i found that.
Anyways thanks for help .... |
Forum: PHP 23 Days Ago |
| Replies: 2 Views: 441 Hello,
Please review this http://elouai.com/users.php it will be helpful to you.
Actually you cant directly do it. you have to store last activity time in DB table and compare it with current... |
Forum: PHP 23 Days Ago |
| Replies: 8 Views: 310 Hello friends,
I am doing one project in which i need to find currently online users.how can i ? is there any way ?
another thing , if i fetch user login history in DB table and check from... |
Forum: PHP 24 Days Ago |
| Replies: 3 Views: 246 Please Do Google for very better and clear answer. |
Forum: PHP 29 Days Ago |
| Replies: 9 Views: 587 Hello, there
You need external script for grabbing contact . i sending you one site please download script form it and do modification as per required.
If any issues you have during... |
Forum: PHP Feb 27th, 2009 |
| Replies: 2 Views: 8,517 Try with for loop like
for($i=0;$i<count($_POST["chkbx"]);$i++)
{
"INSERT INTO eventdesc(show) VALUES
('".$_POST["chkbx"][$i]."');
$res=mysql_query($str);
if($res)
echo 'Success';
else |
Forum: PHP Aug 27th, 2008 |
| Replies: 3 Views: 1,075 hi,may be i help you.i understand little what you want but if you paste your code here then it will be useful for me :) |
Forum: PHP Aug 6th, 2008 |
| Replies: 2 Views: 6,663 Hi all,
Can anyone help me to solve my problem?
I m doing one PHP project in which i maximum used Javascript and Ajax.Now client require that when he close browser session have to... |
Forum: PHP Jul 1st, 2008 |
| Replies: 2 Views: 8,517 I think for multiple check boxes insert, you have to coding like this in your php file
$c=$_REQUEST['chkbx'];
for($i=0;$i<count($c);$i++)
{
$val=$c[$i];
... |
Forum: PHP Jul 1st, 2008 |
| Replies: 2 Views: 1,551 Hi,I have seen your whole coding and i cant found little mistake in that.but may be its header transfer problem
try following code for header transfer in property details.php
$insertGoTo =... |
Forum: PHP Jun 30th, 2008 |
| Replies: 3 Views: 1,276 I made one php project in which we provide facility to create his/her own web site.
Now I wants to add new feature giving different subdomains to the
members' web pages.
Because the number of... |
Forum: PHP Jun 30th, 2008 |
| Replies: 2 Views: 2,298 You can call a javascript function on onclick event of submit button like
<input type="radio" id="abc">
<input type="submit" name="submit" value="submit" onclick="returns disradio();">
... |
Forum: PHP Jun 28th, 2008 |
| Replies: 2 Views: 971 Hi,sDJh
Thanks for your help
I used that mktime() and date() function and also achive my goal.
mktime() is realy great and very helpful function for get day,date,months... |
Forum: PHP Jun 18th, 2008 |
| Replies: 4 Views: 1,918 hi,
As in above reply you cant have to left any line before code starting
and one thing is that , you include file like include('db.php');
so you have to check if there is another... |
Forum: PHP Jun 18th, 2008 |
| Replies: 3 Views: 518 hi,you have to do like this
echo "Username: ".$ic."<br>"; |
Forum: PHP Jun 17th, 2008 |
| Replies: 2 Views: 971 Hi,friends
I want to display calender in simple way just like the calender display all months in first row,after then 15 days of any one month in second row just like dtpicker but all months... |
Forum: PHP May 31st, 2008 |
| Replies: 3 Views: 7,997 Yes you are right thanks for suggesition and one thing i m working in php and i require this functionality in my php page thats why i wrote here.
bcoz i think that any code for that include some... |
Forum: PHP May 31st, 2008 |
| Replies: 3 Views: 7,997 Hi,I want to upload image file using Ajax.means i want after browse file it will be put in my folder and i can see path just below browse button.and i want only ajax code for this no php or any other... |
Forum: PHP May 28th, 2008 |
| Replies: 3 Views: 405 Hi,You can use sleep() function just after mail($to,$subject,$message,$headers);
like this
mail($to,$subject,$message,$headers);
sleep(5);
may be it will works. |