- Strength to Increase Rep
- +7
- Strength to Decrease Rep
- -1
- Upvotes Received
- 34
- Posts with Upvotes
- 28
- Upvoting Members
- 25
- Downvotes Received
- 6
- Posts with Downvotes
- 5
- Downvoting Members
- 4
IT Manager, Project Manager, Web Developer
- PC Specs
- Intel i7-3770, 16GB RAM, ATI HD7870, Windows 8.1 64-bit
Hi guys, I'm having a weird problem regarding the simple ListView. On my emulator everything is allright and the data is loaded correctly from JSON API, the data also loads on my device. The problem is that on my emulator, the listview is populated but on my real device, not, … | |
Re: You could use the Google Business Apps for this solution. | |
| Re: Mine is PHPEd from NuSphere, amazing product, it's not free but it's worth the money. Code suggestion is not case sensitive, great syntax highlighting, framework support, etc. |
Re: This is weird, could you show us the console please? | |
Hi guys, I've made an application in JavaFX and I do want to export it into a runnable jar. When I run it from Eclipse or Netbeans, it works well. But when I run it from windows as an executable jar I get this error for my layout. Exception in … | |
Re: You are trying to redeclare the locale class in a file of yours. | |
Re: This might help you alot: [Click Here](http://lmgtfy.com/?q=how+to+create+an+image+gallery+with+php+and+mysql) | |
Re: It would be much easier to use the PDO class for MySQL queries. Also, try to make a rule for your case typing on your Variables. Try this, first create your PDO server connection as $connection $customer_id = $_POST[Customer_ID]; $first_post = $_POST[First_Post]; $sur_name = $_POST[Sur_Name]; $cus_address = $_POST[Cus_Address]; $phone_num = … | |
Re: I am using mpdf for example and it works just great. My aproach is that every time a customer request a document it's get generated on the fly and it's pushed to download via a header function. | |
Re: //Try this <select name='price' id='price'> <option <?=((isset($_POST['price']) && $_POST['price'] == '')?'SELECTED="SELECTED"':'')?> value='' >Select....</option> <option <?=((isset($_POST['price']) && $_POST['price'] == '0-50,000')?'SELECTED="SELECTED"':'')?> value='0-50,000'>0-50,000</option> <option <?=((isset($_POST['price']) && $_POST['price'] == '50,000-100,000')?'SELECTED="SELECTED"':'')?> value='50,000-100,000'>50,000-100,000</option> <option <?=((isset($_POST['price']) && $_POST['price'] == '100,000-150,000')?'SELECTED="SELECTED"':'')?> value='100,000-150,000'>100,000-150,000</option> <option <?=((isset($_POST['price']) && $_POST['price'] == '150,000-200,000')?'SELECTED="SELECTED"':'')?> value='150,000-200,000'>150,000-200,000</option> <option <?=((isset($_POST['price']) && $_POST['price'] == '200,000 and above')?'SELECTED="SELECTED"':'')?> value='200,000 … | |
Hi guys, I have one simple logical question that I seem not to figure it out, sadly... We have a list of objects and I loop trough them, list of products. We need to create anchor maps for each category, so I did a comparison with temp variables to check … | |
Re: You have to assign the checkbox also an array to the name `target[]` and then you will have to parse over `$_GET['target']` with different methods. You can use `$elements = count($_GET['target']);` if($elements > 0) { for($i = 0; $i <= $elements; $i++) { echo $_GET['target'][$i].'-'.$_GET['os'][$i]; } } In this way … | |
Hey guys, I have this script that does count one year of files, 2014, but when it comes to this year, everything messes up. How could I count properly for each year in the same script ? In the attached screenshot it's obvious that I would only need 2014 - … | |
Hi guys, I have this weird .htaccess rule that is used for a dropdown search engine RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+) index.php?bla1=$1&bla2=$2... and so on [L] If I want to maintain the above rule, it is allright. The problem is that I want to creat a new rule with 3 variables, but the … | |
Hi guys, Trying to develop a custom facet like search in Mysql. I have 3 tables for this: 1.Attribute class 2.Attribute class Name 3.Attribute class Value - attributeClassName Id - productId 4.Products Each product has one attribute class Each attribute class has many values Each value is contained in a … | |
Hey guys, Just tried to log in on Mozilla Firefox 30.0 and it does not give me an alert toast/message. My credentials are good because it worked on IE11 and Google Chrome. I've tried searching something on this topic, but haven't found anything. Have a great day everybody! | |
Hello people :) Having some difficulties regarding a simple substring. Then length of my line is 52 and I iterate it without any problems. When I use this untill the 22nd character it is working final String articleNumber = StringUtils.trimToEmpty(StringUtils.substring(lineValue, 0, 22)); If I want to pass over the 22nd … | |
Hey guys, Having some difficulties understanding why my OR || operator is not working... First part is BOOLEAN and it is working Second part is STRING and it is working, it returns the desired value What could it be ? <?php if(($oferte->isOrdered($oferte->CleanSapStyleNumbers($oferta->VBELN)) == false) || ($oferte->OfertaValida($oferte->CleanSapStyleNumbers($oferta->VBELN))->valabilitate == "VALABILA")): ?> some … | |
Re: can you post the code from the upload from your script ? | |
Re: As far it seems, you did not give permission to the Java to load properly. | |
Re: Make sure that the username has access from the IP from where you want to connect to the server. Is localhost your server or a remote one ? | |
Re: One of the simplest methods is to use jQuery's Ajax method to do this. https://api.jquery.com/jQuery.ajax/ Example code -> not tested $.ajax({ url: "your_link.html", cache: false, success: function(data){ // you can do an each sequence to append every value to the // select box as options // I would respond with … | |
**This is intented for learning purposes, feel free to study the code** Create a drawing that looks like this (pyramid) The number should be incremented with the modulus. | |
Re: What do you mean by this, in more details? | |
Re: In that case you have to use this <?php $server="localhost"; $username="root"; $password=""; $connect_mysql=mysql_connect($server,$username,$password) or die ("Connection Failed!"); $mysql_db=mysql_select_db("reportdatabase",$connect_mysql) or die ("Could not Connect to Database"); $db_sch = "SELECT * FROM cweb01group WHERE `GroupCode` ='".$_POST['group']."'"; //echo $db_sch; $i = 0; $res = mysql_query($db_sch) or die(mysql_error()); //echo mysql_num_rows($res); while($row = mysql_fetch_assoc($res)) { … | |
Re: Line 11 looks weird with the SHA1 function. $sql="SELECT * FROM admin WHERE username='$myusername' AND passcode='.sha1[$mypassword]' "; //should be $sql="SELECT * FROM admin WHERE username='".mysql_real_escape_string($myusername)."' AND passcode='".sha1(mysql_real_escape_string($mypassword))."' "; | |
Re: If I would have to chose, I would chose the browser, it is more easier, but also the media players it is okay. For the browser and media player look at Java FX. -> WebView | |
Re: Please read the documentation for the function: [jquery UI datepicker](http://api.jqueryui.com/datepicker/) Simple usage <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI Datepicker - Default functionality</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css"> <script src="//code.jquery.com/jquery-1.9.1.js"></script> <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <link rel="stylesheet" href="/resources/demos/style.css"> <script> $(function() { $( "#datepicker" ).datepicker(); }); </script> </head> <body> <p>Date: <input type="text" id="datepicker"></p> </body> … | |
Re: First please create a [sqlfiddle](http://sqlfiddle.com/) with your tables and data so we can help you with the query. | |
Re: I think that it is your PHP tags and other little problems. Try this. <?php $balance = $match_value['balance']; $verified = $match_value['verified']; ?> <tr> <th>Balance:</th> <td> <?php if ($verified == 1) { $verified = $balance; } else { echo '<a class="btn btn-danger" href="verified.php"> not verified </a>'; } ?> </td> </tr> |