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
~11.1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for axier

PLease help me how to send password to email <form name="forgot" method="post" action="<?php $_SERVER['PHP_SELF'];?>"> <p><label for="email">Email:</label> <input name="email" type="text" value="" /> </p> <input type="submit" name="submit" value="submit"/> <input type="reset" name="reset" value="reset"/> </form> <?php if(isset($_POST['submit'])) { $connect=mysql_connect("localhost","root","") or die("Could not connect to database"); mysql_select_db("dbsalon") or die(mysql_error()); $email = $_POST['email']; $sql= "SELECT `password` …

Member Avatar for guruparthi
0
8K
Member Avatar for narasimha9

Hi Everyone, I want to access the values from remote server. If I click search and advanced search I should retreive values from remote server. I have catergories like watches,perfumes,etc. Now based on the search I need to display the brands of x company y company for watches perfumes and …

Member Avatar for narasimha9
0
158
Member Avatar for narasimha9

![828915c19b3102a17ba1a5040e2a76ee](/attachments/small/4/828915c19b3102a17ba1a5040e2a76ee.jpg "align-right") ![828915c19b3102a17ba1a5040e2a76ee](/attachments/small/4/828915c19b3102a17ba1a5040e2a76ee.jpg "align-right") ![828915c19b3102a17ba1a5040e2a76ee](/attachments/small/4/828915c19b3102a17ba1a5040e2a76ee.jpg "align-right") I want to retrieve values from database to seleced box.I have three files ajax.js,getcitylist.php,securepage.php.In second select box values are not coming from data base. <li> <label for="State">State</label> <select id="state" name="state" onChange="display(this.value)"> <option value="" selected="selected">-- Select state --</option> <?php include("getstatelist.php");?> </select> </li> <li> <label for="City">City</label> …

Member Avatar for diafol
0
2K
Member Avatar for narasimha9

This is my display page <label for="City">City</label> <div id="city"> <select id="city" name="city" onChange="display(this.value)"> <option value="" selected="selected">-- Select city --</option> <?php include("getcitylist.php");?> </select> </div> this is my ajax page // JavaScript Document var XMLHttpRequestObject=false; function display(state_id) { if(window.XMLHttpRequest) { XMLHttpRequestObject=new XMLHttpRequest(); } else if(window.ActiveXObject) { XMLHttpRequestObject=new ActiveXObject("Microsoft.XMLHTTP"); } XMLHttpRequestObject.onreadystatechange=function() { if …

Member Avatar for diafol
0
243
Member Avatar for narasimha9

Here is the code of index.php and retreive.php index.php <html> <head> <title>Forget Password</title> </head> <body> <h1>Forgot Password using php</h1> <form name="frm" action="" method="post"> <table border="0"> <td>Username</td> <td><input type="text" name="id" /></td> </tr> <tr> <td>Password</td> <td><input type="password" name="password" /></td> </tr> <tr> <td colspan="2" align="center"><input type="submit" name="btn" value="Login" /></td> </tr> <tr> <td align="right" …

Member Avatar for Lsmjudoka
0
137
Member Avatar for narasimha9

display city_name using two tables. I have written two queries but unable to display the results. First Table name is tbl_city and it has id,state_id,city_id,city_name. Other table name is tbl_states and it has id,state_id,state_name $state_id=$_REQUEST['state_id']; $query="select c.city_name FROM tbl_city AS c,tbl_states AS s where c.state_id='$state_id' AND s.state_id='$state_id'";(two tables using alias) …

Member Avatar for Reverend Jim
0
229
Member Avatar for narasimha9

Script i am using shown below.Date picker is showing on screen but it is applying to all input fields.( WHat should i change to get only for a particular input field. I tried with id rangeA but still it is applying to all fields. <script type="text/javascript"> $(function() { $('input').daterangepicker({arrows:true}); }); …

Member Avatar for narasimha9
0
232