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
~1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for milan.sabic

I am getting a screen resolution through XMLHttpRequest. I am opening a show_content.php file with *xmlhttp.open* that contains screen resolution variables which I pull with the GET Method. xmlhttp.open("GET","show_content.php"+queryString,true); This works! and showing this file with the variables in a following div <div id="txtResolution"></div> This part works as well! PROBLEM: …

Member Avatar for AndrisP
0
598
Member Avatar for milan.sabic

I have a table that looks like this room date price 128 02-09-2013 15 128 03-09-2013 17 128 04-09-2013 19 If I want to update the field price depending on the dates, First I have the form with the data: while($rows=mysql_fetch_array($listprices)) <? $date[]=$rows[date]; ?> <p style="width:100px;float:left;text-align:center;"><input name="price[]" type="text" value="<? echo …

Member Avatar for milan.sabic
0
293
Member Avatar for milan.sabic

I have table with 3 columns. 1. room_id 2. date 3. price 4. availability I needed a list of rooms with the total price within selected dates. I could do that as follows: SELECT SUM (price) from table WHERE date BETWEEN ( 01.08 13 AND 05.08.13 ) Now i need …

Member Avatar for pritaeas
0
152
Member Avatar for milan.sabic

Hello I have a mysql table with 2 columns, Id and date. How can I insert one more Column "dayname" that will be filled through sql query with day names related to The value in the column "date". Thanks

Member Avatar for milan.sabic
0
76