Setcookie is not creating cookie
PHP |
https://codedump.io/share/zO7efMXJGY6
|
My login does not seem to be creating a cookie. The form gets all the way to the cookie creation portion of the script and even echos that a cookie wa...
5 years ago
Coding errors in PHP and MYSQL
PHP |
https://codedump.io/share/TOKuhrS6Rj44
|
I followed a youtube tutorial which teaches you how to create an edit and delete data page for PHP and MYSQL but for some reason why code isn't workin...
5 years ago
require_once strips or removes URL parameters
PHP |
https://codedump.io/share/ASbI9XNSlvbr
|
I'm passing a URL with parameters to an index.php page that contains 2 require_once functions calling template and config files that output the final ...
5 years ago
How to INNER JOIN 3 tables using CodeIgniter
PHP |
https://codedump.io/share/iwV17rUWD31z
|
Can someone Tell me how to join 3 table with php?
Example
SELECT FROM table1, table2,table on INNERJOIN -------------------
let I have 3 table.(que...
5 years ago
MySQL conditonal query inside where clause
PHP |
https://codedump.io/share/84VHrS3Gl49E
|
I'm not sure if I'm missing something really obvious, but I keep getting a syntax error on this query. Even if I AM missing something obvious, I'd lik...
5 years ago
php foreach and glob() function
PHP |
https://codedump.io/share/9fj0HdiezjcE
|
PHP versione 5.2.*
my function not working :/
images in server, in folder: /public_html/gallery/images
<?php
foreach(glob('gallery/images/...
5 years ago
Request Entity Too Large
PHP |
https://codedump.io/share/NvM4qLdtiDBt
|
I get this message,
Request Entity Too Large
The requested resource
/index.php
does not allow request data with POST requests, or the amount of data...
5 years ago
PHP if/else structure within html
PHP |
https://codedump.io/share/LY7iwcEqQpMv
|
I am trying to figure out how I should structure an if/else statement.
I understand the basic if/esle should be as follows;
<?php
if ($a > $b...
5 years ago
Wrong day of the week returned by date in PHP
PHP |
https://codedump.io/share/cEfhmPuDLVCD
|
I have the following data coming out of date_parse:
$date_array['year'] = '2015';
$date_array['month'] = '4';
$date_array['day'] = '25';
I am tryin...
5 years ago
Calculating the sum of an array in PHP
PHP |
https://codedump.io/share/vBvE6PQIqC2W
|
I'm trying to set up a basic PHP code where it scans through numbers and calculates the total from a certain set of conditions. Here, I'm saying I wan...
5 years ago