Posts
 
Reputation
Joined
Last Seen
Ranked #961
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
86% Quality Score
Upvotes Received
34
Posts with Upvotes
28
Upvoting Members
25
Downvotes Received
6
Posts with Downvotes
5
Downvoting Members
4
5 Commented Posts
~85.1K People Reached
About Me

IT Manager, Project Manager, Web Developer

PC Specs
Intel i7-3770, 16GB RAM, ATI HD7870, Windows 8.1 64-bit
Favorite Tags
Member Avatar for Szabi Zsoldos

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, …

Member Avatar for abu_5
0
5K
Member Avatar for ing
Member Avatar for diafol

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.

Member Avatar for rsleventhal
0
641
Member Avatar for dtpp
Member Avatar for Szabi Zsoldos

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 …

Member Avatar for Szabi Zsoldos
0
4K
Member Avatar for satheeshakira
Member Avatar for shashigowda

This might help you alot: [Click Here](http://lmgtfy.com/?q=how+to+create+an+image+gallery+with+php+and+mysql)

Member Avatar for jj.dcruz
0
259
Member Avatar for MarkDbro

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 = …

Member Avatar for Szabi Zsoldos
0
984
Member Avatar for Venus_1

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.

Member Avatar for Venus_1
0
258
Member Avatar for uchejava

//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 …

Member Avatar for Szabi Zsoldos
0
266
Member Avatar for Szabi Zsoldos

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 …

Member Avatar for Szabi Zsoldos
0
251
Member Avatar for giao.can

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 …

Member Avatar for Mashetty
0
5K
Member Avatar for Szabi Zsoldos

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 - …

Member Avatar for Watael
0
1K
Member Avatar for Szabi Zsoldos

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 …

Member Avatar for Szabi Zsoldos
0
337
Member Avatar for Szabi Zsoldos

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 …

Member Avatar for Szabi Zsoldos
0
205
Member Avatar for Szabi Zsoldos

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!

Member Avatar for Szabi Zsoldos
0
326
Member Avatar for Szabi Zsoldos

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 …

Member Avatar for Lucaci Andrew
0
270
Member Avatar for Szabi Zsoldos

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 …

Member Avatar for minitauros
0
204
Member Avatar for momonq1990
Member Avatar for Richa_2

As far it seems, you did not give permission to the Java to load properly.

Member Avatar for Richa_2
1
227
Member Avatar for L-D

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 ?

Member Avatar for L-D
0
256
Member Avatar for sjarun833

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 …

Member Avatar for Szabi Zsoldos
0
196
Member Avatar for Szabi Zsoldos

**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.

Member Avatar for Szabi Zsoldos
-1
519
Member Avatar for sanjay@srvmedia
Member Avatar for fiey.hamzah

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)) { …

Member Avatar for Szabi Zsoldos
0
287
Member Avatar for Anubhav_1

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))."' ";

Member Avatar for Bob Hensley
0
225
Member Avatar for Builder_1

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

Member Avatar for Builder_1
0
274
Member Avatar for hiiiiii@

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> …

Member Avatar for Szabi Zsoldos
0
82
Member Avatar for websponge

First please create a [sqlfiddle](http://sqlfiddle.com/) with your tables and data so we can help you with the query.

Member Avatar for websponge
0
222
Member Avatar for sigitas.darguzas

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>

Member Avatar for sigitas.darguzas
0
131