Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #1K
~13.1K People Reached
About Me

I am growing but ahead of you.

Interests
Drawing designing and developing websites
PC Specs
mysql php joomla flex and java
Favorite Forums

16 Posted Topics

Member Avatar for Moderns

While fetching multiple records you should use array try this [CODE] $result = mysql_query("CALL SelectContacts(@mobileNumber)"); while([B]$row[][/B] = mysql_fetch_assoc($result)) print_r($row); [/CODE]

Member Avatar for diafol
0
1K
Member Avatar for sunwebsite

Hi I want to remove the first <LI> item and last three <LI> item from <UL> list. How to write code in JQuery. I need the below list [CODE] <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> <li>6</li> <li>7</li> </ul> [/CODE] as below result [CODE] <ul> <li>1</li> <li>5</li> <li>6</li> <li>7</li> </ul> [/CODE] …

Member Avatar for stbuchok
0
2K
Member Avatar for Shanti C

I came across the below link looked nice to me. [URL="http://www.smashingmagazine.com/2009/06/21/50-fresh-javascript-tools-that-will-improve-your-workflow/"]http://www.smashingmagazine.com/2009/06/21/50-fresh-javascript-tools-that-will-improve-your-workflow/[/URL]

Member Avatar for Shanti C
-1
124
Member Avatar for rrlogu

it may be because of the url that you are passing. make sure your query string should be lowercase it will cause problem in Linux server and also check the condition inside your code is correct also if you redirecting to any where else.

Member Avatar for rrlogu
0
278
Member Avatar for Ryujin
Member Avatar for Ryujin
0
289
Member Avatar for imti321

try this [CODE] $page = isset($GET ['page']) : $GET ['page'] : ''; if($page) { $path="inc/".$page.".php"; if(isset($path)) { if (file_exists($path)) { include($path); } else { echo "Page doesnt exist."; } } [/CODE]

Member Avatar for Zagga
0
153
Member Avatar for SangreAngel

do you get any error? if yes what is that or try to use Firefox Firebug to find what error and where is it?

Member Avatar for sunwebsite
0
178
Member Avatar for ruwanaru
Member Avatar for kbomo

write this [CODE] <?php $server_name="localhost"; $db_user="sql_user"; $db_pass="password"; $db="mydb"; mysql_connect($server_name, $db_user, $db_pass); mysql_select_db($db); $sql = "SELECT city FROM posts"; $result = mysql_query($sql) or die ('Query Error: ' . mysql_error()); while ($results = mysql_fetch_array($result)) { $gender[] = $results; } ?> [/CODE] instead of [CODE]<?php $server_name="localhost"; $db_user="sql_user"; $db_pass="password"; $db="mydb"; $sql = "SELECT city …

Member Avatar for Airshow
0
7K
Member Avatar for mihirpatel83

better use JQuery. Write select box elements and use unique ID as well as value. and use [CODE] $("#IDValue").change(funtion(){ // here write code for open or close new form. }); [/CODE]

Member Avatar for diafol
0
134
Member Avatar for tcollins412
Re: Help

It's very simple. If you use well defined database table for each registering user. When they login you get it from table and display it on the page.

Member Avatar for diafol
0
105
Member Avatar for sunwebsite

I have data value of a table column. I want to know in which database and in which table and in which column the data value appeared in mysql.

Member Avatar for smantscheff
0
1K
Member Avatar for manishblr1

use JQuery to accomplish this. In your configuration menu assign ID on the red surface image or link On click of image link write [CODE]$('#frame_id').hide('slow');[/CODE]

Member Avatar for sunwebsite
0
111
Member Avatar for linomatti

Basically ajax will work in the background. I thing you might call ajax through java script file or JQuery. In this case I thing you are writing java script inside the server side script. So don't write a java script server side. Before you call an ajax file write a …

Member Avatar for linomatti
0
106
Member Avatar for Manjunath H
Member Avatar for sunwebsite
0
87
Member Avatar for xxmp

If you want get the [cart_id + 1], after you inserted your value in your stored procedure better you write [B]SELECT LAST_INSERT_ID() + 1;[/B]

Member Avatar for xxmp
0
149

The End.