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
~5K People Reached
Favorite Tags
Member Avatar for anony

I have hosted my website in linux platform. for some reasons am shifting it to windows hosting. do i have to make changes to the php code. Will the database be affected? Any help will be appreciated.

Member Avatar for iamthwee
0
147
Member Avatar for anony

Hello I am trying to load a select option depending on the value selected on another select option <select id="state" onchange="SelectValue();"> <option value="State1">State1</option> <option value="State2">State2</option> <option value="State3">State3</option> </select> <select id="district"></select> <script type="text/javascript"> function SelectValue() { var e = document.getElementById("mfr"); var Val = e.options[e.selectedIndex].value; } </script> I want to call this …

Member Avatar for AARTI SHRIVAS
0
143
Member Avatar for anony

Hello everyone I was just wondering how these online train ticket booking sites in particular work. Do they link to other sites to check the availability of seats?? I am talking about private travel agency websites as i came across some online train ticket booking site which had bus, flight …

0
69
Member Avatar for anony

I am working on a web application in silverlight. i want to use msmq to send data to the remote server in offline mode. I have absolutely no idea about msmq, except for some basics. i used this link to create triggers, rules and queue [URL="http://www.left-brain.com/tabId/65/itemId/1690/pageId/3/Pro-MSMQ-Microsoft-Message-Queue-Programming.aspx"]http://www.left-brain.com/tabId/65/itemId/1690/pageId/3/Pro-MSMQ-Microsoft-Message-Queue-Programming.aspx[/URL] I created a private …

Member Avatar for John Breakwell
0
152
Member Avatar for anony

I am trying to host a GWT project but all in vain. Whatever i do the screen doesnt appear except for the loading symbol. I am trying to host a dummy project for testing. My hosting platform is windows. i am using filezilla to transfer the gwt files

0
91
Member Avatar for anony

while hosting a asp.net web service, where do i put the services in. like we put it in the iis in our computer. Any help will be really appreciated as i am clueless on how to do it.

Member Avatar for anony
0
74
Member Avatar for samurai_alexis

I'm working on a project which implements google Maps. Now I have to choose between GWT or JavaScript as a programming platform. I'm wondering which is faster when accessing the data to be used to initialise the maps from a remote server? Any ideas?

Member Avatar for anony
0
98
Member Avatar for BlueCharge

Hello everyone. I currently have a while loop that pulls all members to a page if the username begins with the selected letter. We have a lot of members now and the "usernames beginning with "a" are quite alot. So i need to be able to have a way to …

Member Avatar for rajarajan2017
0
183
Member Avatar for anony

After hosting, i get this error:"Can't connect to MySQL server on 'localhost' (10061)" The code was working fine in my computer. I have hosted it in windows platform and i am using mysql and php. Here is my code for db connection $connection = mysql_connect(localhost,uname,pword) or die (mysql_error()); $db = …

Member Avatar for pritaeas
0
299
Member Avatar for anony

This is my code for multiple file upload. When the user clicks on attach more files link $max_no_img should be incremented but i am not able to figure out how to do it. <!doctype html public "-//w3c//dtd html 3.2//en"> <html> <head> <title></title> <script type="text/javascript"> function increment(){ max_no_img++; return max_no_img; } …

Member Avatar for vibhaJ
0
3K
Member Avatar for anony

function gethotproperty($hot){ $gethot = "select p.reference_id, p.area, p.area_unit, p.transaction_type,p.property_type,p.property_name,p.address1,p.address2,p.city,p.locality,p.pincode,p.area_in_sqft,p.total_price,p.negotiable,". "p.rate_per_sqft,p.num_bedrooms,p.floor_number,p.intro_image_loc,p.amenities_detail, p.specification_detail, p.location_detail from " . DBConf::getDatabaseSchema() . "property p where p.hot = ".$hot; $result = mysql_query($gethot, $this->connection); $property = new Property(); while($row = mysql_fetch_array($result)){ $property->referenceId = $row['reference_id']; $property->transactionType = $row['transaction_type']; $property->propertyType = $row['property_type']; $property->propertyName = $row['property_name']; $property->address1 = $row['address1']; $property->address2 …

Member Avatar for rajarajan2017
0
179