320 Posted Topics

Member Avatar for slyme
Member Avatar for bo0ga
Member Avatar for bo0ga
0
118
Member Avatar for feblioz

Posting this thread under web design->css/html will give more result.

Member Avatar for karthik_ppts
0
134
Member Avatar for Cyre
Member Avatar for muralibobby2015

[CODE] select u.name, u.subscription_package, i.image_url from users u,userimages i where u.userid =i.userid; [/CODE]

Member Avatar for karthik_ppts
0
126
Member Avatar for Cyre

assign stud_no value to the check box as follows echo "<input type='checkbox' name='check[]' value='".$row['stud_no']."'>"; and store this value in another table while submit. Use **[code]** tags to post your codes

Member Avatar for karthik_ppts
0
140
Member Avatar for patrick1981

try this [url]http://roshanbh.com.np/2008/01/populate-triple-drop-down-list-change-options-value-from-database-using-ajax-and-php.html[/url]

Member Avatar for karthik_ppts
0
6K
Member Avatar for kewl

Replace the line 40 [CODE=php] echo "<tr><td bgcolor=\"white\">".$img."></td>";[/CODE] with [CODE=php]echo "<tr><td bgcolor=\"white\"><img src='foldername/$img'></td>";[/CODE] and no need of this line [CODE=php]echo "<br";[/CODE] if you are using <table> if you need change it as [CODE=php]echo "<br>";[/CODE]

Member Avatar for kewl
0
203
Member Avatar for zeeshanmughal
Member Avatar for klemme
Member Avatar for gilgil2

Why you use comparison operator(==) on line 3? [CODE=php]$_SESSION['authenticated']==true; [/CODE] It should be [CODE=php]$_SESSION['authenticated']=true; [/CODE]

Member Avatar for NinjaMediaD
0
172
Member Avatar for daitken

You can't use the style in js file. js file only accept javascript code. so cut off your style from menu.js

Member Avatar for daitken
0
288
Member Avatar for gopi17

Mark this thread as solved if your problem solved. Dont use this quotes for field_name like 'status'. if you need, you can use like this `status`

Member Avatar for gopi17
0
134
Member Avatar for h2so4_2003
Member Avatar for R.Manojkumar

Why can't you try this with your php file [CODE=php] ini_set("upload_max_filesize","50Mb"); ini_set("post_max_size","50Mb"); ini_set("max_execution_time","500"); ini_set("max_input_time","500"); [/CODE]

Member Avatar for karthik_ppts
0
2K
Member Avatar for jacob21

Replace this [CODE=php]<option value="<?php echo $row['sid'] ?>"><?php echo $row['name'] ?></option>[/CODE] with [CODE=php]<option value="<?php echo $row['sid'] ?>" <?php if($_POST["u_state"]==$row['sid']) echo "selected"; ?>><?php echo $row['name'] ?></option>[/CODE] for city [CODE]<option value="<?php echo $row['cityid'] ?>" <?php if($_POST["s_city"]==$row['cityid']) echo "selected"; ?>><?php echo $row['cityname'] ?></option>[/CODE]

Member Avatar for jacob21
0
247
Member Avatar for Waardii
Member Avatar for gopi17

Replace your line 17 [CODE=php]$row = mysql_fetch_array($result) or die(mysql_error());[/CODE] with [CODE=php]$row = mysql_num_rows($result);[/CODE]

Member Avatar for scarcella
0
92
Member Avatar for deyesborn

emclondon is correct. Chage your code as per the his suggestion. the mail will bw send only once.

Member Avatar for karthik_ppts
0
3K
Member Avatar for help4kids

In line 148 remove the single quotes from Thank's.. Please use code-tags to post your codes

Member Avatar for karthik_ppts
0
242
Member Avatar for DaveyMoyes
Member Avatar for gilanib

In this line [CODE=php]<a href="franchiseDetails.php?city=<?php echo $row3['city'];?>">[/CODE] pass your record id instead of city as follows [CODE=php]<a href="franchiseDetails.php?id=<?php echo $row3['id'];?>">[/CODE]

Member Avatar for scarcella
0
192
Member Avatar for subrata_ushasi

try this [url]http://roshanbh.com.np/2008/01/populate-triple-drop-down-list-change-options-value-from-database-using-ajax-and-php.html[/url]

Member Avatar for subrata_ushasi
0
266
Member Avatar for Persi
Member Avatar for Persi
0
4K
Member Avatar for arihantphp

put [CODE=php]echo $file['name'];[/CODE] before that if statement [CODE=php]if (!in_array(end(explode(".", strtolower($file['name']))), $allowedExtensions))[/CODE] and see the result.

Member Avatar for arihantphp
0
444
Member Avatar for martymaven
Member Avatar for yanwick
Member Avatar for klemme
Member Avatar for Poonam Jadav

Refer this and change your code [url]http://www.plus2net.com/php_tutorial/php_change_password.php[/url]

Member Avatar for Sorcher
0
298
Member Avatar for shielaolid

The End.