-
Replied To a Post in Create and read barcode
PHP runs server side so any operation in data before PHP must use a client side solution (e.g. JavaScript) as well (except if you mean that you want to have … -
Replied To a Post in Lost in a Ajax POST
Hello rouse, yes you are lost there. With AJAX you only send a request to the server , you don't execute code there. Any other attempt with evil eval or … -
Replied To a Post in Am I Qualified Based Off BSc IS & Five Years Experience?
In any job you will need to learn new things , having a stable background is a plus , another is the willing to learn more. You will be under … -
Replied To a Post in How to display next and previous records in php
It seems that what you want is a simple pagination. Is this the case? Of course you can get the previous or next record of a record received by a … -
Replied To a Post in At the end of the month start new table
Do you mean that what you need is a job (a cron job apparently) that will run once a month (at the beginning of the month) ? If so , … -
Gave Reputation to invisal in My apologies
> web hosting costs are over $5000/mo Are you sure you spend $5000 per month for hosting? I am running a website with as much as traffic as Daniweb (if … -
Replied To a Post in At the end of the month start new table
To make it clear , do you need two methods that will take a timestamp and the first one will return the beginning of that month timestamp and the second … -
Gave Reputation to rubberman in Things that you should be careful while upgrading to PHP 7
Rule of thumb for enterprise systems - NEVER do an upgrade to version 0 of anything. PHP 7.0 is no exception to this rule! That said, your feedback to the … -
Replied To a Post in How to search between two dates in PDO, Please help me.
For some reason the C++ like bindParam is looking better to most than the simpler question mark. For some reason you use fetchObject although it isn't really an object but … -
Replied To a Post in How to find the closest element using jquery
A simple solution without the use of data or filters. On field enter add a class to it (e.g. closestMark) and on leave remove it (you could do it with … -
Created Things that you should be careful while upgrading to PHP 7
Usually I am very conservative about upgrading in production even partial. But the moto “PHP 7 is not an evolution is a revolution” made me want to try it also … -
Replied To a Post in Php vs Node
rubberman I agree with you with the "separation of powers" as you described it , but just to be clear because others might read this , Node.js is an “Event-driven … -
Replied To a Post in Php vs Node
I respect any programming language , technique or environment (I am not sure how to state it in a way that node.js folks would accept it) . About node.js , … -
Replied To a Post in Your opinion about two custom CDN techniques and SEO
In second option I tested it and found out that even if some Google bots don't send referrer certainly send a string that contains “bot” (case insensitive) in HTTP_USER_AGENT (e.g. … -
Created Your opinion about two custom CDN techniques and SEO
Hello, We are about to implement a custom CDN for images but there are two different options I am thinking (I work in a very small company that I am … -
Replied To a Post in forget password count
We NEVER keep use passwords in our DB, we keep a hash of them , so we cant send the password to anyone , we can send a link to … -
Replied To a Post in Filter php result not working
“ it is not properly working for me “ don't describe the problem , moreover if you really want help don't paste your view paste only you PHP logic code -
Edited Two questions about the DaniWeb root
I know that I have made my comments about that UI. Moreover I have shared ideas of how to move on with daniWeb . Just two quick questions. Why do … -
Edited Two questions about the DaniWeb root
I know that I have made my comments about that UI. Moreover I have shared ideas of how to move on with daniWeb . Just two quick questions. Why do … -
Created Two questions about the DaniWeb root
I know that I have made my comments about that UI. Moreover I have shared ideas of how to move on with daniWeb . Just two quick questions. Why do … -
Replied To a Post in is there a better way to manipulate table using a combobox??
There are countless better ways , but all have to do with what is your definition of better. E.g. you have logic in your template file , your SQL queries … -
Replied To a Post in How to update address bar with new URL without reloading the page?
The short answer is quite simple , google “History js” , the real answer is never alter the address bar url IF you are going to provide different content from … -
Replied To a Post in Auto login to external website from my page
If you control both apps you haven't any reason to mimic a login. You don't have any reason for SOAP ( this is a matter of SSO Single Sign On … -
Replied To a Post in Session time out in PHP
SitiNuraini this is not an old post , this is seven years old post , more over it has been solved . Why do you hesitate to create a new … -
Replied To a Post in Session time out in PHP
Jay_14 this is a seven years old post , why in earth would you like to contribute to something that is really out of date ? If you want just … -
Replied To a Post in Database filed into 1 dimensional array
It is not only that it is more logical or better , it is easier and faster coding as well , I can't understand why anyone would like to make … -
Replied To a Post in How to activate user startpage functionality in custom CMS
There are many many issues there , just from a quick view I spotted more than 10 , and then I stopped spotting. Are you new to PHP or new … -
Gave Reputation to cereal in PHP 7 is comming
*/me `I can see flames of war coming o_o`* I would say because it's easy to use and, at the moment, it's easy to replace developers. -
Replied To a Post in attempting to change from mysql to mysqli
One small question , you are changing your code why changing to mysqli where there is not the option of real prepared statements and not to PDO where there are … -
Replied To a Post in How does PHP know cookies set by JavaScript?
Diafol and invisal gave the answer but I have never thought that the term “local storage” could be applied to cookies , in that sense Aeonix has any reason to … -
Replied To a Post in Your opinions about an an architecture of providing web apps based in C / C
That was a spelling mistake I made. With “archive” I meant achieve . And of course “achieve an architecture” isn't accurate , but better would be “implement an architecture”. There … -
Replied To a Post in analyzing information from selected checked boxss
> iam a 4thyear student and you still don't understand basic relationships ? What were those 4 years about ? Yes I could help you but probably you wouldn't to, … -
Edited Your opinions about an an architecture of providing web apps based in C / C
Hello , first of all I need to make clear that although I understand , and have done projects modifying code that is already there (and created my own minions) … -
Created Your opinions about an an architecture of providing web apps based in C / C
Hello , first of all I need to make clear that although I understand , and have done projects modifying code that is already there (and created my own minions) … -
Replied To a Post in PHP objects & arrays
I have no idea why any plugin would return an anonymous object stdClass , it doesn't make any sense , but you wrote that this plugin that you use does … -
Replied To a Post in PHP objects & arrays
Hello James , there are some points that may help you so I will share them one by one. Paying a bit more attention to error messages or even answers … -
Replied To a Post in PHP objects & arrays
James I can't understand what you are trying to do , explain it in more details. It seems that for some reason you have anonymous objects stdClass what is that … -
Replied To a Post in Show all days in month except for Sunday
Andriano_1 this question was allready solved (four years ago and not one). But are you sure you posted "a fix" ? Have you tested your own code ? You wrote: … -
Gave Reputation to cereal in display all dates with day in between two dates
--- EDIT --- never mind, jkon's questions are more pertinent to solve this. -
Replied To a Post in display all dates with day in between two dates
What has to do that SQL query ? Do you just need to know the dates between two dates (that you could just do with PHP) or do you need … -
Replied To a Post in SSL Certificate
No it isn't necessary but as diafol pointed it gives customers a good impression about the securities techniques the site uses , and more over (that I found more important … -
Replied To a Post in Programming or Networking?
I have never had to choose among those two concepts (maybe because networking wasn't an option in my times). The simple answer when we have a major decision in our … -
Gave Reputation to diafol in Can't insert or update data above 1000 in the database.
>Arrays functions in PHP is a big failure I agree. Ridiculous. -
Replied To a Post in Can't insert or update data above 1000 in the database.
Arrays functions in PHP is a big failure till now (that is sad for a language that depends so much in associative arrays). In fact creating a simple implementation (like … -
Gave Reputation to diafol in Why daniweb attracts only newbies with no interest to stay in programming
I'll chip in there on the "quality of noob". I think I've mentioned this in a couple of threads over the last year or so. We do seem to be … -
Replied To a Post in Why daniweb attracts only newbies with no interest to stay in programming
One more could be the ability to make short comments into a response (but not as short as the “upvote” comment) without the need to vote. One other would be … -
Replied To a Post in Why daniweb attracts only newbies with no interest to stay in programming
My recent tutorial series ? ... No one read those , no questions in the third one I had an error in purpose .. and nobody read it and tried … -
Edited Why daniweb attracts only newbies with no interest to stay in programming
The full title: "Why daniweb attracts only newbies with no interest to stay in programming and what can be done to keep the others as well ? " Over few … -
Created Why daniweb attracts only newbies with no interest to stay in programming
The full title: "Why daniweb attracts only newbies with no interest to stay in programming and what can be done to keep the others as well ? " Over few … -
Replied To a Post in Calculate in PHP
You still didn't answered in any of my questions , you still didn't explained what you are doing. I will play the mentalist again (but I don't have enough clues) …
The End.