-
Replied To a Post in How to cache php pages
ok, after looking at your code, I decided to tweak my recommendations above. Before anything else, we need to do some refactoring on your codes. All of the methods responsible … -
Replied To a Post in How to cache php pages
Let me work on it.. I'll post it tomorrow evening my time zone western pacific. -
Replied To a Post in How to cache php pages
I don't mean this personally, but the class above will eat the server resources like a hog. It is a class of too many methods. One probable solution I can … -
Replied To a Post in table for airline seat reservation
I guess you can store the them in session as an array.However, before doing so, you need to fix your form first. -
Replied To a Post in Have a submitted image from a sub domain, show up on the main domain?
The owner might be referring to a function that is already on the script or function you need to create. It is really hard to speculate what the owner meant … -
Replied To a Post in Carry Forward
I Honestly believe that balance carry forward has nothing to do with PHP. I am assuming that this teminology may have something to do with financial reporting, or any calculation … -
Replied To a Post in How to load value from database for ajax in edit form
you need to echo this whole thing <input type="text" name="ptype" id="ptype" value="<?php $SCYQ64TYPE1 = $ex1["SCYQ64TYPE"]; echo $SCYQ64TYPE = trim($SCYQ64TYPE1) ?>" readonly > and this one if($q!='') should be written like … -
Replied To a Post in CodeIgniter 3.0 & Learning Resources
> @V, dude I like your style :). Cool, but I forgot the semicolon on $this->dialog = $dialog; -
Replied To a Post in CodeIgniter 3.0 & Learning Resources
In practice, MVC pattern is not as complicated as my drawing above. They are in fact easy to learn. The secret of learning is to go back to the basic … -
Replied To a Post in PHP Licensing
Another example Server +Apache + MySQL + PHP + CodeIgniter + other open source + Your Application which is not an open source + Payment gateway - external services + … -
Replied To a Post in PHP Licensing
e.g. student management application You YOUR SERVER + Application + School = your end-user + Students = school's end-user Take the simple example above. If some delicate information are forcefully … -
Replied To a Post in PHP Login
if you run your code in the console environment like CLI in PHP, this <!DOCTYPE html> <?php ?> can create problem. You just need to reconsider what you wrote on … -
Replied To a Post in PHP Licensing
First, I honestly believe that you should consult a copyright attorney. There is no way I have the training and any knowledge in giving legal advice in software licensing. Software … -
Replied To a Post in Image Upload
There is nothing wrong, but why? <input type="file" name="0" id="box"> I hope you are aware that it can be viewed as an integer and maybe bolean if not careful. $x … -
Replied To a Post in How to write a javascript standallone application
I hope Mr. LDA don't mind me posting response on this thread. Do you have composer.json inside your node directory? -
Replied To a Post in how to solve header and footer
for html5, you can probably use object like this.. <body> <object name="header" type="text/html" data="head.html"></object> <br /> <object name="footer" type="text/html" data="footer.html"></object> </body> I am not sure though, but you can refer … -
Replied To a Post in Clickable poster at different points after video play
you can also try and look at [video.js](https://github.com/videojs/video.js/wiki/Plugins). -
Replied To a Post in PHP and XAMPP formating issue
as per the title of your thread where it says "XAMPP", you need to start the xampp control panel and then start the apache and mysql services. then direct your … -
Replied To a Post in Login button
two ways you can do what you wanted. first, can do it with javascript. second, add this above your image submit button <input type="hidden" name="submit" /> -
Replied To a Post in SOAP service with mysql array
can you give us the object of nusoap and the method you want to pass the are array? -
Replied To a Post in ping from both side host and guest but cant browse on guest
here are the screenshots of the server in the virtual box being access by firefox in the host computer  Just for the purpose of this discussion, I skinned … -
Replied To a Post in ping from both side host and guest but cant browse on guest
Per your message, why windows 2008 with WAMP on virtual machine ? why not linux with LAMPP, if this is going to serve web contents? besides if you are using … -
Replied To a Post in Insert multiple records one query
> certain monster has 3 items check the varchar(xx) value on your database structure. Is it enough for monster name characters? -
Replied To a Post in online website access
You should run ipconfig on your command prompt whenever this type of error happens. It appears to me that it is an IP related problem. There is a much more … -
Replied To a Post in Insert multiple records one query
The ID on your second table must be set to auto-increment. Another possible problem ahead is that you have too many identical columns between 1st and 2nd tables. 2nd table … -
Replied To a Post in ping from both side host and guest but cant browse on guest
on your hosts file on the host machine give it a directives as IP of the virtual machine e.g xxx.xxx.x.xx alias or domain name of the server in the virtual … -
Replied To a Post in online website access
Your information is not complete. Please let us know the following Are you hosting your own site on your desktop? Is your desktop IP address static? Have you look into … -
Replied To a Post in Reading xml data into html
This is possible with ajax and jquery on the client side. While on the server side, ASP, PHP, python, ruby, and node.js. -
Replied To a Post in blob and longtext Mysql type
if you are using PHP then you can probably use file_get_contents and store the output into your mysql database. Before doing that make sure to use base64_encode the html source … -
Replied To a Post in pagination in php
take a look [here](https://www.daniweb.com/search/query/0?q=pagination+php#gsc.tab=0&gsc.q=pagination%20php&gsc.page=1) and let us know. -
Replied To a Post in I need to pay someone for a live counter that adds one
Here is a simple derivative of the linked thread above. I want to let you know that this is also a hybrid ( PHP and Javascript). I don't normally use … -
Replied To a Post in Storing all exceptions in an array
I really don't know why it has to be on the front-end. if that is the intension of the OP, IMHO , we don't tell the user if something is … -
Replied To a Post in Setting cron job in codeigniter ??
The dude can also test it on his CLI like so, php /the_main_cron_class.php movies/cool -
Replied To a Post in How can I update apache,php and mysql
Here the screenshot to make points much clearer.  The PHP extensions on the left are compiled with VC11 for the PHP version 5.6.3, while on the right side … -
Replied To a Post in How can I update apache,php and mysql
is it installed in Program Files or is it somewhere in the root drive e.g. c:/yourWAMP? Upated: put this on a new php page <?php phpinfo(); ?> direct your browser … -
Replied To a Post in Xampp Security
Just the thought of having a production site hosted inside the xampp can make me cringed. [Uniform server](http://sourceforge.net/projects/miniserver/) is far better than Xampp in terms of production website security. However, … -
Replied To a Post in I need feedback please.
correction! :) this <script> function jsFunction() { var index; var text = "<ul>"; var codes = (show_array()); for (index = 0; index < codes.length; index++) { text += "<li>" + … -
Replied To a Post in I need feedback please.
@D, Luckily, I always keep screenshots on my thumb drive and desktop. Here we go Mr. L.D.A yes it is a win executable or msi. The application is pretty lightweight. … -
Replied To a Post in single statement multiple lines in PHP
I am not sure if this is exactly what you are looking for, but in PHP it is called transaction. The mysql ENGINE directives must be set to innodb. Normally, … -
Replied To a Post in Need help with cookies
here is a [good tutorial](http://webcheatsheet.com/php/blocking_system_access.php) on how it can be done without relying too much on session and cookie. If you need help in converting it to mysqli or PDO, … -
Replied To a Post in Need help with cookies
current time minus the time of the event. If the difference between these two is greater than or equal 10 minutes, you must set your user free. -
Replied To a Post in Warning: mysql_real_escape_string() expects parameter 2 to be resource,
the error says it all mysql_real_escape_string() . page number is not a string, it is an integer. So, your validation should focus on is_numeric and FILTER_SANITIZE_NUMBER_INT. Make sure to remove … -
Replied To a Post in PHP Security - GET Variables, URL safe?
This is a pretty simple ethical hacking for testing purposes only. This may work or may not work.. just bringing the points accross. for example if you don't sanitize and … -
Replied To a Post in Getting header error when generating Alert Messsage
> Warning: Cannot modify header information - headers already sent by (output started at /home/blahblahblah.php on line 24" try adding exit; after the header location.. Another alternative: if you want … -
Replied To a Post in PHP Security - GET Variables, URL safe?
validate, sanitize, check for the referrer. -
Replied To a Post in Php echo not working in phtml
do as suggested above and then maybe you want to experiment something like this... if you know where to find httpd.conf on your server, then you can add .phtml into … -
Replied To a Post in Hi
You have arrived. Welcome to Daniweb. Your project is looking good and good luck to you. -
Replied To a Post in Hello Guys
hi, welcome to Daniweb. -
Replied To a Post in CodeIgniter 3.0 & Learning Resources
I think you have arrived to the right place. About your opening question, I am not sure what will work for you and what will not. However, when I was … -
Replied To a Post in Google Map don't display ?
I truly admire people who can give updates when they found the solution. Thanks.
The End.