Jump to content

jemz

Members
  • Posts

    27
  • Joined

  • Last visited

jemz's Achievements

Newbie

Newbie (1/7)

4

Reputation

  1. Hi, Thank you for this, Okay i will make a try and i will write back to you if i get in trouble.thank you so much
  2. Is that a timer after the green box show in a couple of seconds,the form login will display?
  3. jemz

    picture

    Hi, how can i put picture when the user is loggin in?just like in other forum or facebook,when we loggin into our account it will display a picture. ex: Welcome imagehere Joe can you help me please how can i make something like this. Thank you in advance.
  4. Hi, i just want to ask on how can i make like the sign-in in the w3school forum, when we click the sign it will show the small box colored green and then it will display the login form,is it okay to ask on this ?i just want to learn how.I hope you can help me. Thank you in advance.
  5. jemz

    Menu(php)

    Hi, okay i will try this and i will let you know if it is working...
  6. jemz

    Menu(php)

    Hi, I am back about the menu in associative array. Okay how can i do this to show something like this in the URL example. index.php?fpage=home how can i do that. Thank you in advance.
  7. jemz

    Sending Message

    @Ingolme,Okey thank you for this link,i will write again to you if i have problem.
  8. jemz

    Sending Message

    Hi, Can i ask some idea on how to do this,i want that if someone will registered to my website it will send message or confirmaton to there email..can you help me please how to do this.
  9. jemz

    Select option

    Is it possible also in this select example inside the select option cat orchid mouse Karl Jupiter if the user will select the cat it will display to the texfield "Animal" and if the user will select Ochid it will Display to the textfield "plant" is this possible?
  10. jemz

    Select option

    Hi,it's working where did you learn this kind of coding i mean the way you do in your echo?Thank you so much it helps me.
  11. jemz

    Select option

    Hi,can you help me please on this i am stuck in this,i could not select the day.Thank you in advance.<select name="day" > <?php for($d=1;$d<=31;$d++) echo '<option f($day==$d) selected='selected'>'.$d.'</option>'; ?> </select>
  12. jemz

    Select option

    Hi sorry for the late reply.Thank you so much it's working.you are very great.
  13. jemz

    Select option

    Hi,thank you for the quick reply,is this what you mean?<select name="status" > <option value="<?php echo $status; ?>" selected="selected"></option> <option value="Active">Active</option> <option value="Inactive">Inactive</option></select>
  14. jemz

    Select option

    How do i set value in my select option, and i want this value is from the database. I tried this but it's not working <select name="status" value="<?php echo $status; ?>"> <option value=""></option> <option value="Active">Active</option> <option value="Inactive">Inactive</option></select> Can you help me on this.Thank you.
  15. Hi, I need some help,can i use input type="button" when deleting data in my database, Okay,this is how i made my code,i displayed all the records in the database using the Table,and i am using PDO.what i want is to click the delete button and this will redirect to the goDelete.phpand my problem in goDelete.php is i cannot displayed the idno and the name.Can you help me on this.Thank you in advance. while($fld = $count->fetch(PDO::FETCH_OBJ)) { ...... echo '<td>'.$fld->idno.'</td>'; echo '<td>'.$fld->Name.'</td>'; echo '<td><input type="button" name="delete" value="Delete" onclick="delete()"> </input></td>';} my script function delete(){ window.location.href="goDelete.php";}
×
×
  • Create New...