• Member Avatar for Aeonix
    Aeonix

    Created [PHP] is_int is false on integer?

    Link is: `/example.php?id=1`, no space after `1`. if (isset($_GET["id"])) { $id = $_GET["id"]; echo !is_int($_GET["id"]); // yields "1" (true) !!! } Ask me whatever you need. I check to make …
  • Member Avatar for Aeonix
    Aeonix

    Began Watching [PHP] is_int is false on integer?

    Link is: `/example.php?id=1`, no space after `1`. if (isset($_GET["id"])) { $id = $_GET["id"]; echo !is_int($_GET["id"]); // yields "1" (true) !!! } Ask me whatever you need. I check to make …
  • Member Avatar for Aeonix
    Aeonix

    Marked Solved Status for Only first SQL row is getting understood

    Connection is successful. No typo's were made (look below). If read it from top to bottom, some of the tests that I show you will seem stupid. Until you look …
  • Member Avatar for Aeonix
    Aeonix

    Replied To a Post in Only first SQL row is getting understood

    I worked it out: if ($var1 = mysqli_query($databaseconn, "YOUR_SQL_QUERY")) { while ($row = mysqli_fetch_assoc($var1)) { // $row is associative array. } }
  • Member Avatar for Aeonix
    Aeonix

    Replied To a Post in Only first SQL row is getting understood

    To add: > For the second problem, the var_dump of your row above shows what's wrong there. 'name' isn't a key in the array, everything is index based. How come …
  • Member Avatar for Aeonix
    Aeonix

    Replied To a Post in Only first SQL row is getting understood

    > Firstly, this line only showing one row: You've only asked it to fetch one row so the dump only has one row. mysqli_fetch_row does just what it says i.e. …
  • Member Avatar for Aeonix
    Aeonix

    Marked Solved Status for Need help structuring in content of an element

    This is element that I'm trying to achieve: http://i.imgur.com/9XmGXkt.png This is "template" of what I have to work with: https://jsfiddle.net/hcgpyutj/ I tried floating, staticing, absoluting, relativizing, tables, transform. I changed …
  • Member Avatar for Aeonix
    Aeonix

    Edited Only first SQL row is getting understood

    Connection is successful. No typo's were made (look below). If read it from top to bottom, some of the tests that I show you will seem stupid. Until you look …
  • Member Avatar for Aeonix
    Aeonix

    Edited Only first SQL row is getting understood

    Connection is successful. No typo's were made (look below). If read it from top to bottom, some of the tests that I show you will seem stupid. Until you look …
  • Member Avatar for Aeonix
    Aeonix

    Created Only first SQL row is getting understood

    Connection is successful. No typo's were made (look below). If read it from top to bottom, some of the tests that I show you will seem stupid. Until you look …
  • Member Avatar for Aeonix
    Aeonix

    Began Watching Only first SQL row is getting understood

    Connection is successful. No typo's were made (look below). If read it from top to bottom, some of the tests that I show you will seem stupid. Until you look …
  • Member Avatar for Aeonix
    Aeonix

    Replied To a Post in Need help structuring in content of an element

    Not quite. Floating to the right, gives about the same result. The problem with it, is that the red part needs to be vertically centered **and** on the right. Which …
  • Member Avatar for Aeonix
    Aeonix

    Created Need help structuring in content of an element

    This is element that I'm trying to achieve: http://i.imgur.com/9XmGXkt.png This is "template" of what I have to work with: https://jsfiddle.net/hcgpyutj/ I tried floating, staticing, absoluting, relativizing, tables, transform. I changed …
  • Member Avatar for Aeonix
    Aeonix

    Began Watching Need help structuring in content of an element

    This is element that I'm trying to achieve: http://i.imgur.com/9XmGXkt.png This is "template" of what I have to work with: https://jsfiddle.net/hcgpyutj/ I tried floating, staticing, absoluting, relativizing, tables, transform. I changed …
  • Member Avatar for Aeonix
    Aeonix

    Marked Solved Status for Internet Explorer, div takes entire width while should take 75%.

    CSS file: http://pastebin.com/tBvGjhTX HTML file: http://pastebin.com/r5YUTHgp I have a div with following rules: { width: 75%; margin: 5% auto; } Obviously works everywhere except Microsoft Internet Explorer 0.5 to Edge. …
  • Member Avatar for Aeonix
    Aeonix

    Replied To a Post in Internet Explorer, div takes entire width while should take 75%.

    Yep, it works. Still pretty stupid though, every single browser does it, except IE... I don't know what I expected.
  • Member Avatar for Aeonix
    Aeonix

    Replied To a Post in Internet Explorer, div takes entire width while should take 75%.

    I don't know. But here's the link to download of the project file. Just open the file in Internet Explorer 11 and any other browser, you don't need to do …
  • Member Avatar for Aeonix
    Aeonix

    Replied To a Post in Internet Explorer, div takes entire width while should take 75%.

    Yes. I know it works with Internet Explorer 9+ normally. That's why I used it. Because I expected it to work, and it doesn't. I don't know what part does …
  • Member Avatar for Aeonix
    Aeonix

    Replied To a Post in Internet Explorer, div takes entire width while should take 75%.

    Ah, good you reminded me, I added `<!DOCTYPE html>`. However, that still does not solve the problem.
  • Member Avatar for Aeonix
    Aeonix

    Replied To a Post in Internet Explorer, div takes entire width while should take 75%.

    Didn't work :(
  • Member Avatar for Aeonix
    Aeonix

    Created Internet Explorer, div takes entire width while should take 75%.

    CSS file: http://pastebin.com/tBvGjhTX HTML file: http://pastebin.com/r5YUTHgp I have a div with following rules: { width: 75%; margin: 5% auto; } Obviously works everywhere except Microsoft Internet Explorer 0.5 to Edge. …
  • Member Avatar for Aeonix
    Aeonix

    Began Watching Internet Explorer, div takes entire width while should take 75%.

    CSS file: http://pastebin.com/tBvGjhTX HTML file: http://pastebin.com/r5YUTHgp I have a div with following rules: { width: 75%; margin: 5% auto; } Obviously works everywhere except Microsoft Internet Explorer 0.5 to Edge. …
  • Member Avatar for Aeonix
    Aeonix

    Recommended Seamlessly rerender website as $_GET changes

    <!-- example --> <html> <head></head> <body> /* Lots of contents, header, etc. <?php if (isset($_GET["id"])) { echo $anexample[$_GET["id"]]["test"]; } ?> </body> </html> There would be links that would say `example.php?id=1` …
  • Member Avatar for Aeonix
    Aeonix

    Tweeted Seamlessly rerender website as $_GET changes

    <!-- example --> <html> <head></head> <body> /* Lots of contents, header, etc. <?php if (isset($_GET["id"])) { echo $anexample[$_GET["id"]]["test"]; } ?> </body> </html> There would be links that would say `example.php?id=1` …
  • Member Avatar for Aeonix
    Aeonix

    Liked / Shared Seamlessly rerender website as $_GET changes

    <!-- example --> <html> <head></head> <body> /* Lots of contents, header, etc. <?php if (isset($_GET["id"])) { echo $anexample[$_GET["id"]]["test"]; } ?> </body> </html> There would be links that would say `example.php?id=1` …
  • Member Avatar for Aeonix
    Aeonix

    Created Seamlessly rerender website as $_GET changes

    <!-- example --> <html> <head></head> <body> /* Lots of contents, header, etc. <?php if (isset($_GET["id"])) { echo $anexample[$_GET["id"]]["test"]; } ?> </body> </html> There would be links that would say `example.php?id=1` …
  • Member Avatar for Aeonix
    Aeonix

    Began Watching Seamlessly rerender website as $_GET changes

    <!-- example --> <html> <head></head> <body> /* Lots of contents, header, etc. <?php if (isset($_GET["id"])) { echo $anexample[$_GET["id"]]["test"]; } ?> </body> </html> There would be links that would say `example.php?id=1` …
  • Member Avatar for Aeonix
    Aeonix

    Replied To a Post in Is 5MB of SQL to front-end result too much for browser?

    > I would let PHP format it into the array so that the browser just has to JSON.parse() the value and then you don't have to worry about "processing" It …
  • Member Avatar for Aeonix
    Aeonix

    Edited Is 5MB of SQL to front-end result too much for browser?

    If user issues a query, I would like AJAX to download the result of query into browser so that JavaScript can do the parsing. The results could be around 1MB-5MB …
  • Member Avatar for Aeonix
    Aeonix

    Created Is 5MB of SQL to front-end result too much for browser?

    If user issues a query, I would like AJAX to download the result of query into browser so that JavaScript can do the parsing. The results could be around 1MB-5MB …
  • Member Avatar for Aeonix
    Aeonix

    Began Watching Is 5MB of SQL to front-end result too much for browser?

    If user issues a query, I would like AJAX to download the result of query into browser so that JavaScript can do the parsing. The results could be around 1MB-5MB …
  • Member Avatar for Aeonix
    Aeonix

    Marked Solved Status for Wrap div's if there's not enough place

    Example. I have parent div of 1000px width. I have 4 children divs that each have been told to have "some size" (for example 300px). I would like to put …
  • Member Avatar for Aeonix
    Aeonix

    Replied To a Post in Wrap div's if there's not enough place

    # OH It's `inline-block` for children. I somehow manage not to save file, that's why it didn't work.
  • Member Avatar for Aeonix
    Aeonix

    Marked Solved Status for [PHP] Are non-called functions interpreted by PHP?

    This is essentially a really long question **If I were to create a function without calling it's execution. Does PHP initialize it anyhow or is the entire function ignored entirely …
  • Member Avatar for Aeonix
    Aeonix

    Created Wrap div's if there's not enough place

    Example. I have parent div of 1000px width. I have 4 children divs that each have been told to have "some size" (for example 300px). I would like to put …
  • Member Avatar for Aeonix
    Aeonix

    Began Watching Wrap div's if there's not enough place

    Example. I have parent div of 1000px width. I have 4 children divs that each have been told to have "some size" (for example 300px). I would like to put …
  • Member Avatar for Aeonix
    Aeonix

    Marked Solved Status for Put two divs next to one another, without float and flexbox

    My first problem was. "I have this box, I need this box to be 230px, and I have second box, that needs to take entire space remaining". My solution to …
  • Member Avatar for Aeonix
    Aeonix

    Replied To a Post in Put two divs next to one another, without float and flexbox

    `overflow: hidden` it is.
  • Member Avatar for Aeonix
    Aeonix

    Created Put two divs next to one another, without float and flexbox

    My first problem was. "I have this box, I need this box to be 230px, and I have second box, that needs to take entire space remaining". My solution to …
  • Member Avatar for Aeonix
    Aeonix

    Began Watching Put two divs next to one another, without float and flexbox

    My first problem was. "I have this box, I need this box to be 230px, and I have second box, that needs to take entire space remaining". My solution to …
  • Member Avatar for Aeonix
    Aeonix

    Edited Bootable Windows XP x86 from HDD

    Is there a way to prepare 80GB HDD (SATA) in such way, that it boots from ISO on itself? I'm delivering this to an old grandpa who doesn't know a …
  • Member Avatar for Aeonix
    Aeonix

    Created Bootable Windows XP x86 from HDD

    Is there a way to prepare 80GB HDD (SATA) in such way, that it boots from ISO on itself? I'm delivering this to an old grandpa who doesn't know a …
  • Member Avatar for Aeonix
    Aeonix

    Began Watching Bootable Windows XP x86 from HDD

    Is there a way to prepare 80GB HDD (SATA) in such way, that it boots from ISO on itself? I'm delivering this to an old grandpa who doesn't know a …
  • Member Avatar for Aeonix
    Aeonix

    Edited [PHP] Are non-called functions interpreted by PHP?

    This is essentially a really long question **If I were to create a function without calling it's execution. Does PHP initialize it anyhow or is the entire function ignored entirely …
  • Member Avatar for Aeonix
    Aeonix

    Created [PHP] Are non-called functions interpreted by PHP?

    This is essentially a really long question **If I were to create a function without calling it's execution. Does PHP initialize it anyhow or is the entire function ignored entirely …
  • Member Avatar for Aeonix
    Aeonix

    Began Watching [PHP] Are non-called functions interpreted by PHP?

    This is essentially a really long question **If I were to create a function without calling it's execution. Does PHP initialize it anyhow or is the entire function ignored entirely …
  • Member Avatar for Aeonix
    Aeonix

    Gave Reputation to Reverend Jim in How to be a good programmer

    Your most important skill as a programmer is the ability to communicate clearly. Develop that skill first. Never assume that the person you are communicating with has developed that skill. …
  • Member Avatar for Aeonix
    Aeonix

    Replied To a Post in Detect interception/modification of HTTPS request by 2st party (user)

    > Your final question is "How can I determine if a request is from AJAX ?" No, not really. Because I "send AJAX requests" myself too. > (accept from rude …
  • Member Avatar for Aeonix
    Aeonix

    Began Watching How to be a good programmer

    # How to be a good programmer - Tips and Tricks # Here I am writting few tips and tricks by following them you could be a good programmer, I …
  • Member Avatar for Aeonix
    Aeonix

    Replied To a Post in How to be a good programmer

    Don't mind me, what is ***VCS***? The only thing that pops up in Google (thank you hellish SEOs) is Veritas Cluster Server.

The End.