Jump to content

piyusharora420

Members
  • Posts

    31
  • Joined

  • Last visited

Everything posted by piyusharora420

  1. Sorry for spelling mistake thorpe.
  2. Thrope, I get alert "Login falied try again later" each time I try to login. How can I get data on other file while using post method?
  3. One more mistake. use while ($photos = mysql_fetch_array($getspd)) instead of while ($photos = mysql_fetch_array($getspdi))
  4. Hello, I am trying to make a program for adding an element at the beginning of an array. I know it is possible with array_unshift. But, I want to create a function myself for serving the purpose. I tried a lot but no success. Please go through the below code and find out the wrong or post your own code. Thanks. <?php function addstart($array,$v) { $s=$array[0]; for($i=0;$i<5;$i++) { $s=$array[i+1]; $array[i+1]=$array[i];$array[i]=$s; } $array[0]=$v; print_r($array); } $x=888; $arr=array(1,2,8,96,85); addstart($arr,; //print_r($arr); ?>
  5. No, I am not kidding. I am very new to ajax. Please reply me with the error/mistake I have made
  6. Hello Everyone, I am a newbie and trying to make a login form using Ajax. But, its not working for me. Please go through the attached files and let me know my mistake. Thanks in advance. 18431_.php 18432_.php 18433_.php 18434_.php
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.