- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
18 Posted Topics
Re: 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 … | |
Re: 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 | |
Re: 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 … | |
Re: 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 | |
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 | |
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 | |
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 … | |
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 … | |
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 … | |
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 … | |
Re: 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 | |
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. … | |
Re: 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 .= … | |
Re: 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 | |
Re: 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 | |
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 … | |
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 … | |
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. |
The End.