Tagged Questions
PHP is an open-source server-side scripting language widely used in web development. Use this tag for questions about PHP classes, methods, functions, syntax and use.
-2
votes
1answer
27 views
How do you use mod_rewrite in htaccess to make SEO friendly URLs? [closed]
Most of my website urls are like this:
http://telelivesports.com/index1.php?option=com_lsh&view=lsh&event_id=152569&tid=379293&channel=0&tmpl=component&layout=popup
which ...
0
votes
3answers
52 views
PHP form security and email validation?
I'm making a small user sign up system to try and teach my self some more PHP and MySQL. I've got to this point so far:
<?php
$errormsg ="";
if (isset($_POST['adduser'])){
$email ...
0
votes
0answers
20 views
Internal Functions work but External Page Functions are ignored
So I am creating a website and in it I need to have a shopping cart. Now when I arrive to the checkout where the user has to input the details, the javascript won't work.
I need to have certain ...
0
votes
1answer
23 views
PHP Form, Addresses with the # symbol causes url error and unidentified index
I know my title isn't very clear.
But I am currently doing a CRUD webpage which allows the administrator to edit user details.
So the user details are displayed in a table with edit and delete links ...
-3
votes
1answer
43 views
PHP Regex to add a span tag [closed]
I have these strings:
$string1 = 'api/1/get/friends/:id/connections';
$string2 = 'api/1/get/search/:name';
I need to add span tags between the slashes if-and-only-if the character ":" is found next ...
1
vote
1answer
35 views
Html form to text file
On my website i got a form looks like this on index.html:
<form id="demo" action='submit.php' method='post' enctype='text/plain'>
link: <input type='text' name='web'></br>
<input ...
1
vote
2answers
28 views
Echo text depending on the variable value
I've created a ratio type of PHP script for the users in my platform.
Depending on how the user interact, the $ratio variable number changes. They start off at ratio 1.00. The lowest they can get to ...
0
votes
2answers
19 views
I'm using LAST_INSERT_ID() in php and mysql but i can't get a result. Why?
$sql_comp5 ="INSERT INTO `tiquets` (`Id_Tiquet`) VALUES (NULL); SELECT LAST_INSERT_ID()";
$result8 = mysql_query($sql_comp5);
$flag_control=0;
while ($row = ...
1
vote
2answers
34 views
Title of html inside php inside html
I'm kind of learning all by myself, and I'm using the W3 validator to check my code.
Now I got this document which loads:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
...
0
votes
0answers
11 views
How to rewrite URL to remove symlink segment
I have the following shared hosting file structure using a codeigniter project:
myTLD.com/sites/mysite
mysite contains: application, system , index.php ... ( standard CI2 setup )
I have symlinked ...
0
votes
0answers
38 views
json_decode() returns different answer
I need to check if the user is logged in through json api.
The json api URL must be:
http://www.[targetdomain].com/api/logged?s_email=MY_EMAIL
and if the specified email is logged in the response is
...
2
votes
4answers
64 views
Python class members confusion
First of all, i come from a java and php background and am now learning python. This may therefore seem like a silly question but it has me a little confused.
As an example in php:
class MyClass
{
...
1
vote
1answer
22 views
using rowspan with array output to table in php
I'm looking to modify a table on a page to include merged rows.
Here is the php code that deals with the output from a mysql db:
######## PRINT OUT TABLE WITH YEARS AND OFFICES PLUS NAMES IN ...
-3
votes
2answers
70 views
MYSQL query not working in PHP
I have tried everything. This is my last resort. The code below is supposed to submit the info received from the form to the database to be displayed later. Now I know the query is correct but it does ...
0
votes
0answers
13 views
Digital Goods: stuck on loading
I generated, using the PayPal Lab Wizard, an Digital Good Express Checkout System.
But when I am on the process (Live), I am still stuck on the loading page (after the credential step).
0
votes
1answer
42 views
Getting 0 in database as result of query
Hi all newbie here :) Don't know if this is correct title, so sorry if not...
I'm trying to input data from one table to another for right user
controller:
function Admin(){
$user = ...
0
votes
0answers
9 views
Kohana cache module on dynamic pages
I'm working on a website with user-specific homepage. Will Kohana regenerate cache everytime when different user opens homepage? Link to homepage is constant for every users, but content will be ...
-1
votes
4answers
53 views
How do I set up my e-mail to this web form? [closed]
I finally figured out how to create sliding down web form but where and how do I set up my e-mail address. So, when somebody sends me the message I got the same message right into my e-mail. I guess ...
0
votes
1answer
24 views
Laravel 4 Model events. Possible to do reading, read type event after query results are set on a model?
In Laravel 4 there are Model events for creating, created, updating, updated etc.
Has anyone found a way to do something similar to a reading, read event without hacking / extending the QueryBuilder ...
0
votes
0answers
22 views
Laravel Route::get('/') not working with Route::controller(Controller::detect());
I bumped in to a problem what im trying to fix for a hour now.
When is use
Route::get('/', array('as' => 'about', 'uses' => 'about@index'));
Route::controller(Controller::detect());
And i ...
0
votes
4answers
51 views
PHP Print Rows in an array
I want to echo out multiple lines in the array but it only outputs one line:
PHP
$query = "SELECT * FROM user WHERE Category = 'Men'";
$result = mysql_query($query);
while ($row1 = ...
-1
votes
2answers
23 views
Advice on database structure and performance needed [duplicate]
I'm currently working on a site which will offer a blog for users to write.
My question relates to how to structure the database.
So all of you know how blogs are working. Some user posts an entry ...
0
votes
2answers
48 views
Is Renaming admin.php safer?
Suppose I have index.php and admin.php.
If there is no link to admin.php inside index.php, is there a way to know that the page admin.php exist , other by trying to type it in the browser ?
(Because, ...
0
votes
0answers
15 views
Registering PHPunit configuration file
I am creating an extension to some framework that has its own PHPUnit test runner. This extension has its own phpunit.xml.dist file and PHPUnit bootstrap via which its tests can be run. I'd however ...
-2
votes
0answers
12 views
How to add calendar on site, with text, photo and video information? [closed]
I want add calendar on my PHP5 site where I can add text, photo and video information and where can I roll over event. Tell me please what calendar I can use for this?
0
votes
3answers
25 views
Error when using 'include' documents in pages that are in a folder
When load up a page that is in a folder, i get errors from trying to load the included docs on the page;
<?php
include ('Resources/core/init.php');
include ('Resources/includes/header.php');
...
0
votes
1answer
32 views
Strict Standards: Only variables should be passed by reference in PHP 5.3 [duplicate]
After I updated my php to 5.3 this error started to showing.
Strict Standards: Only variables should be passed by reference in /var/www/site/Functions/Cases.php on line 108 Strict Standards: Only ...
0
votes
0answers
37 views
Memory-efficient data structure for matrix in PHP
I run out of memory, using a 80k x 20 matrix (array) of integer values in PHP. Is there a solution?
Background
I have a PHP application that collects data and stores it to a database. The data is ...
0
votes
1answer
42 views
jQuery autocomplete working on local server but fails on web server?
The code is same on both Web server and local server but using firebug I get two kinds of response links:
Works fine
GET http://localhost/www.test.co.uk/index.php/home_Controller/getSearch/r
...
0
votes
1answer
21 views
Convert Unix Timestamp to time zone?
I have a unix timestamp that is set to +5, but I'd like to convert it to -5, EST Standard time. I would just make the time stamp be generated in that time zone, but I'm grabbing it from another source ...
0
votes
1answer
26 views
get external div content with php or jquery
at this url:
http://www.syria-stocks.com/forum/
there is:
<div class="panelRight goldPanel">some content here...</div>
I want to get the content of this div to my site, I tried this:
...
2
votes
0answers
43 views
Web applications using both PHP and Java [closed]
Though I do not know the name, but I have heard some web apps using both PHP and Java.
Does anyone know any application of that sort? What is an advantage of combining Java and PHP?
If there are ...
0
votes
1answer
83 views
PHP time() give differents results in the same moment
I created a php multiplayer word game using the time () function to synchronize it.
It works great except that sometimes the time value function gives different results in the same moment that make ...
-1
votes
2answers
50 views
javasript in another file with php in it [closed]
i want to tidy up my index.php.
i have some scripts which i want to move to another files.
atm i come to this, i hava javascript which has php in it to echo values from database.
i came to solution, ...
0
votes
1answer
19 views
Defining Globals inside global variables PHP
I am forever going up and down my code adding and removing globals to functions.
Is it possible to pass global variables inside global variables to functions to save defining them in each time in ...
0
votes
1answer
27 views
Check for active user state with laravel
This is pretty standard login function and validation that works nicely. But I also want to check that the user is active. I have set up a column in my users table with 'active' set to either 0 or 1.
...
0
votes
1answer
78 views
Cannot get email from query string
I'm having trouble getting an email address from $_GET.
Here is my code:
<?php
$eadd = $_GET['email'];
echo("<p>Please check your inbox on your email $eadd.</p>");
?>
I ...
0
votes
0answers
8 views
Exchange Access Token does not return output sometime in facebook graph api
I am using graph api to exchange access token in one of my application, but sometime its returns blank output.
I am using this code snipet
$graph_url = ...
-2
votes
1answer
31 views
php in_array() or array_search() not working
I am using a simple php script to look for an element in an array like
$restricted = array('root/base', 'root2' );
print_r($restricted);
if( array_search('root/base', $restricted) ){
...
-5
votes
0answers
22 views
Custom Download Page in PHP [closed]
I'm need a custom download page for wordpress blog. That means I need a custom php code to redirect the user to download page. We provide download link like this example.com/wp-content/upload/abc.pdf. ...
0
votes
2answers
20 views
Sort images from read(); directory function
here's my code. But the read(): in the while loop does not seems to sort my result aphabetically. Is there a way to sort my result?
tks
Seby
<?php
$save_path_folder_images = ...
0
votes
1answer
47 views
how to pass value of for loop from one page to next page in php?
hi everyone my problem is this that i dynamically creted rows of table on the basis user input. Now each row contain textbox,comboxbox on selcting value from combobox n entering value in textbox from ...
-5
votes
1answer
24 views
Trying to set a Password with php [closed]
What I did so far is set a Password on my webseit. It works, but you can still access the webseite with the link of the page where the password lets you on. This is the skript I have so far:
<?php ...
1
vote
1answer
41 views
Search string for values in array
I have address fetched from MySQL like :
$address="This Street, Nice Area, That Country";
$address="This Street, Superb Area, Which Country";
$address="This Street, Fine Area, A Country";
Now what ...
0
votes
0answers
16 views
DataMapper CodeIgniter - Dropdown list
I want to have a dropdown list with brands, and depending on the choice, it will appear the products of the brand selected.
My Tables
Brands
==================
id | Brand
---------------
1 ...
1
vote
2answers
20 views
How can I get the keys from a dynamic multidimensional array, in PHP?
How could I get the keys from a dynamic multidimensional arrays those I randomized them using Shuffle function?
Assume that I have this script:
function customShuffle(array &$array) {
...
1
vote
1answer
27 views
Setting global routes for single controller
I have set /admin prefix for all routes in a single bundle, but I also want to set some global prefix for a single controller inside of this bundle. So if I have FooController created, I could write:
...
0
votes
4answers
28 views
PHP Cookies redirect to wrong role
good day...
i have some problem here and hopefully someone can help
if(isset($_COOKIE['role'])== "admin")
{ echo $_COOKIE['username'];
header("location: admin/adminUI.php");
}
...
-5
votes
1answer
20 views
How to make CSS work with PHP files in cPanel? [closed]
I've uploaded a CSS file into cPanel and tried to code it into my login.php file, but it's not working at all.
Underneath is the HTML code for the login.php file.
<html>
<head>
<link ...
0
votes
2answers
19 views
Get the biggest image from url with php
So guys, my code for this is:
<?php
include('simple_html_dom.php');
$url = "http://www.google.si";
$html = file_get_html($url);
$largest_file_size=0;
$largest_file_url='';
// Go through all ...



