- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 46
- Posts with Upvotes
- 41
- Upvoting Members
- 31
- Downvotes Received
- 14
- Posts with Downvotes
- 11
- Downvoting Members
- 6
- Interests
- sharing knowledge,web surfing ,playing cricket
Re: have you done anything so far ? if pls post here so taht we are here to help you | |
Re: for achieving your task we should consider one thing like as delete operation in your case , **for deleting a row** you took the support of checkbox similarly for setting text into corresponding textbox when the selection is made in respective dropdownbox we should consider the same thing otherwise there … | |
Re: hai **batuzai04123** , why dont we try to pass taskid value to java script from button onclick eventt like as follows **<input type="button" id="btnApprove" onclick="getTaskId(<%=taskId%>);" value="Approve" />** if you try like as above there is no need of hidden feild as well as you may get the task id directly … | |
Re: hai **kaungzaythu**, i think [in your view page] you need to change this line from this <?php echo form_dropdown('r_e_name', $return);?> to this <?php echo form_dropdown('r_e_name', $data['return']);?> because in your controller code you placed all regions data in **$data['return']** data array with index 'return' so in our view, we need to … | |
Re: hai Albert Pinto please go thru this url it may helps you in this regard http://cakebaker.wordpress.com/2006/04/15/file-upload-with-cakephp/ happy coding | |
Re: hai **adikimicky**, suggestions (for better programing): make your connect method signature as follows public void connect(String user_name,String pass){ // your code here } **at line 59** pass username and password values to connect() method.so that line will be as follows connect(userName,passWord); then finally chage the query as follows String str … | |
Re: hi nadiam, i think you are using **$rw** variable out of the scope. let me know is $rw globally defined variable in your php page? pls notice $rw = mysql_fetch_array($sql); // you defined here } // closed loop here } // closed loop here ?> Event Name : <input type="text" … | |
Re: hi nadiam , first you have to know one thing about radio buttons functionality if you want select one radio button among three or group of radio buttons then you should go like as follows (name of radio buttons are same) <input type="radio" name="status" value="unconfirmed"> unconfirmed <input type="radio" name="status" value="attended"> … | |
Re: hi Douglas_2, if you want to place the coordinate values in two fields then try to change the code in the showPosition() method is enough. i mean change like from this to (instead of displaying into div) x.innerHTML=”Latitude: ” + position.coords.latitude +“<br>Longitude: ” + position.coords.longitude; this document.getElementById('field1').value = position.coords.latitude; document.getElementById('field2').value … | |
Re: hi all, i am not sure but my guess is the problem might be with jquery. it conflicts with other jquery codes in your page. so try to change the lines from (50-53 in the above post)this <script> $(function() { $( "#tabs" ).tabs(); }); </script> to this, <script> Jq = … | |
Re: hi BenWard , i dont know exact solution for your problem but try with this pls replace this £ symbol with '£' word at php side and send these results to your webpage through AJAX as it is it will produce the currency symbol as you expected i am not … | |
Re: hai **hbhatti18**, go through the following URL it may helps you a lot http://www.onbarcode.com/products/java_barcode_reader/ happy coding | |
Re: have you tried anything before? if yes post your code here so that we will help you | |
Re: hai KamiNuvini, you have to modify your script code as follows so that you will get your answer $(document).ready(function(){ $("button").click(function(){ var long_url_txt = $("#longurl").val(); // reading value from your text field here $.ajax({ url:"shortify.php", // where you want to pass your request data:"long_url_value="+long_url_txt, // passing textfield values to desired php … | |
Re: hai **Shalomd**, have you tried anything/any code so far please share with us? for sending mail use php **mail(to,subject,message,headers,parameters)** function like as in the given url http://www.w3schools.com/php/func_mail_mail.asp let me know the status happy coding | |
Re: hai **Sweksha**, i think you are using netbeans IDE to develop the appilication.so that those values are coming by default with JCombobox. for this , you have to call **removeAllItems()** avialable in the **JCombobox** class before inserting data into combobox i mean calll the following statement before while loop combobox.removeAllItems(); … | |
Re: hai **Maideen**, i think the following statement(at line no 26 in Search.php) might be the problem you need to change from this while($row = $stmt->fetch()); to like this while($row = $stmt->fetch()){ // your code goes here .... } i think you got the point and reason too let me know … | |
Re: hai **anisha,** why dont you try this URL once? https://netbeans.org/kb/docs/websvc/intro-ws.html the above url gives you a brief way for your requirement i feel this is simple and easy for all mind levels happy coding... | |
Re: hai **edwin.thomson1**, **are you asking for vertical menu or horizantal menu?** please clarify this once.. i think you are looking for horizantal menu if it is then try the bellow url which may meets your requirement http://www.menucool.com/horizontal/css-menu and this too, http://nettuts.s3.amazonaws.com/819_megamenu/demo/index.html let me know the status [EDITED] | |
Re: hai **Webville312**, i think u need to set the **minDate** property for achieving this like as follows (incase if you are using Jquery Datepicker) $("#datepicker").datepicker({ minDate: 0 }); let me know the status happy coding | |
Re: hai **Junior Coder**, i recommend zebra date picker for this requirement please go thru the following link you will find so many dateformats as you wish to display the date pickers http://stefangabos.ro/jquery/zebra-datepicker/ let me know the status happy coding | |
Re: hai **Olyboy16**, in my point of view, its vaery hard to explain by seeing the explanation. it will be easy to expert of here atleast by seeing the example or the code for giving a proper solution to your problem lets see if any expert of here can try to … | |
Re: hai **vishal.du123**, as **pritaeas** said, please make your script code from this <script>$('.countryclassinfolink').click(function(event) { event.preventDefault(); var detailinfo = $(this).parent().next().html(); $('#country_details').html(detailinfo); $('.countryclassinfolink2').click(function(event) { event.preventDefault(); $('#country_details').html(''); $('#country_details').hide(); $('#country_seminars').fadeIn(); }); $('#country_seminars').hide(); $('#country_details').fadeIn(); }); </script> to this <script type="text/javascript"> $(document).ready(function(){ $('.countryclassinfolink').click(function(event) { event.preventDefault(); var detailinfo = $(this).parent().next().html(); $('#country_details').html(detailinfo); $('.countryclassinfolink2').click(function(event) { event.preventDefault(); $('#country_details').html(''); $('#country_details').hide(); $('#country_seminars').fadeIn(); … | |
Re: hai **klemme**, i agree with what **iamthwee** said is right, because while sending the image with mail not required to get the contents of the image file instead of that provide the full path of the image which is resided in your webserver like as follow <img src="http://www.yourservername.com/dir_ofImages/image_path"/> so you … | |
Re: hai **Bibek_NS**, in addition to the abouve suggested urls , go through the following links it may helps you in this regard http://s3.envato.com/files/2526201/index.html or http://ruwix.com/simple-javascript-html-css-slider-progress-bar/ let me know if you have any doubts happy coding | |
Re: hai **Ze0001ng** i feel this the best hosting server for java but it has 15 trail period then if you want to upgrade there is upgrade option too have a look at once (i tried it and experienced it) http://jelastic.com/ | |
Re: hai **RinzLove**, why dont you try to use **cookies** in this requirement? the following url may help you in this regard [Click Here](http://www.quirksmode.org/js/cookies.html) | |
Re: hai **rexmatthew**, **just suggestion only:** please try to do like as follows change from this <script> jQuery.noConflict(); // Put all your code in your document ready area jQuery(document).ready(function($){ // Do jQuery stuff using $ $("div").hide(); }); // Use Prototype with $(...), etc. $('someid').hide(); </script> to this **(we have to use … | |
Re: hai **erum**, i too surprised by seeing this kind of requirement its working for the click event of button like this format <input type="button" name="" value="Try it" onclick="myFunction()"/> than this <button onclick="myFunction()">Try it</button> i dont know the reason exactly but i think this might be html version problem we will … | |
Re: hai **davy_yg**, in addtion to the above responses,please consider this one while you inserting data into galley table your sql syntax is like as follows INSERT INTO gallery(productname, location, description, urlimages)....... but while you updating the gallery table your sql is UPDATE gallery SET productname='".$productname."', image='".$location."', description='".$description."', urlimages='".$urlimages."' WHERE id=".$_REQUEST['id']; … |