Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #3K
~18.1K People Reached
Favorite Tags

18 Posted Topics

Member Avatar for phpNewbie

Hi, you can have php code [code=php] <?php echo $_SERVER['PHP_SELF'];?>[/code] on your form action to return the results in the same page. and in the top of your page(the same page with the form), add conditional statements for all/any or search form fields and then query them .. Show us …

Member Avatar for tqmd1
0
14K
Member Avatar for cali_dotcom

ei.. if you want you're result on the same page use: [code=php] <form method="post" action="<?php echo $_SERVER['PHP_SELF'];"></form> [/code] then you're php code for the result on the top of you're html.. hope this help :) enim

Member Avatar for jibon57
0
2K
Member Avatar for fortiz147

hi.. i am a also a newbie.. try this one.. this worked for me. :) [code=php] <html> <head> </head> <body> <?php //mysql connection $dbconn = mysql_connect("","","") or die(); mysql_select_db("table") or die(); $sqlquery = "your query"; // query on table $sqlresult = mysql_query($sqlquery, $dbconn); $count = mysql_num_rows($sqlresult); // count query result …

Member Avatar for light-man
1
340
Member Avatar for phpNewbie

hi phpnewbie! did kireol's code work? it should.. you just have to fetch the data from the table then loop it inside the select tag. :) -enim

Member Avatar for enim213
0
252
Member Avatar for enim213

hi All, I want to ask if is there any possibility to separate column data in different columns using php code.. really dont know if i have solution in php or here in mysql.. any idea would be really appreciate Thanx enim

Member Avatar for vijukumar
0
101
Member Avatar for enim213

hi All, I want to ask if is there any possibility to separate column data in different columns using php code.. really dont know if i have solution in php or here in mysql.. any idea would be really appreciate Thanx enim

Member Avatar for enim213
0
146
Member Avatar for enim213

hello everyone! is there anybody knows why i can't see my hover drop down menu because it is behind the white background of div tag? I did make a background transparent but still there is a white that covers the hover drop down.. please, let me know what should i …

Member Avatar for enim213
0
102
Member Avatar for enim213

sorry to post it here.. i really need your attention.. thanx hi guys! i am enim, i usually post thread in PHP and i guess its my first time here in mysql.. i have problem regarding the total count of the terminatecause.. i need the count of ANSWERED calls only …

0
101
Member Avatar for enim213

hi guys! i am enim, i usually post thread in PHP and i guess its my first time here in mysql.. i have problem regarding the total count of the terminatecause.. i need the count of ANSWERED calls only and the total count of all calls.. can i do this …

0
94
Member Avatar for enim213

hi, im enim and its my first time to post here in javascript because im into php. my question is: 1.) Is it possible to have two checkbox in a row (with different value), the one is hidden and if i check the the visible checkbox, the other one will …

Member Avatar for enim213
0
134
Member Avatar for forwardlookguy

can you post your code for us to know what you want it would be? im a newbie too .. perhaps i could help too:) enim

Member Avatar for petrov50
0
229
Member Avatar for enim213

guys really need your help here.! im working on multiple update using checkbox. since i was using only 1 checkbox before it works fine. but i need 2 values (from checkbox, because if not, array wont give me the value im looking for..) for my query on the next page. …

Member Avatar for enim213
0
79
Member Avatar for justted

you can use this code for your dropdown... [code=php] <?php //month $month_names = array("January","February","March","April","May","June","July","August","September","October","November","December"); $month .= "<select name='month[]'>"; for($x=0;$x<12;$x++) { $v = $x+1; if($v==$pcmonth) { $month .="<option value='$v' selected='selected'>$month_names[$x]</option>"; } else { $month .="<option value='$v'>$month_names[$x]</option>"; } } $month .="</select>"; //day $day .= "<select name='day[]'>"; for($z=1;$z<32;$z++) { if($z==$pcday) { $day .= …

Member Avatar for enim213
0
105
Member Avatar for veledrom

you mean paging with 2 records in each page? i also workd on paging, and it worked for me.. but i didn't try 2 records yet in each page.. umm at least 10.. i'll post the code if that's might help. enim

Member Avatar for veledrom
0
85
Member Avatar for derekcpt

hi, ummm.. you want to find free rooms from selected date.. if you're using dropdown to find date.. use mysql between. if you have further questions.. let us know. enim :D

Member Avatar for derekcpt
0
193
Member Avatar for enim213

can anyone give me a hand.. any idea how to do the following requirements.. i can't start please help.. i have two tables to compare.. it has so called rates.. its buying rate and selling rate(diff table), before i update new buyingrate.. it has to check selling rate (must be …

Member Avatar for enim213
0
301
Member Avatar for enim213

here's what i already have, whenever i click a specified letter like for example 'A' it must print out and count how many countries starting with that letter. The problem is whenever the count is greater than the specified limit, when i clicked to page 2, it shows also countries …

Member Avatar for enim213
0
106
Member Avatar for enim213

Hi. This is enim, 21. Im from the Philippines and im glad being a member of this IT Community. i am an aspiring web programmer/developer who seeks support and continuous learning in order to maximize my potential and eventually share the knowledge to others.

Member Avatar for selfhelpebooks
0
76

The End.