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.

learn more… | top users | synonyms (6) | php jobs

0
votes
0answers
2 views

htaccess show shorten url

I am using .htaccess to shorten a long url to a shorter nice looking url like www.dom.com/trol to http://www.newdom.com/blog.php?type=user&user=trol It works fine. But it the browser it shows ...
0
votes
0answers
3 views

I received an email from this company

I received this email copied below. I am wondering is this a scam or legit? Dear Jenny, We have been waiting to hearing from you, online to talk to you. I am the Claims Manager of Humanity Service ...
0
votes
0answers
17 views

get_func_argNames and variable variables

I'm writing a method to generate detailed data for logging functions and arguments in debug mode. I previously reproduced the same code in multiple places (bad), but it works just fine (good): ...
1
vote
1answer
20 views

PHP str_replace arrays

Basically, I currently have this line of code: $uname = ...
1
vote
0answers
8 views

How would I make a Twitter-like feed using SQL/PHP?

On the site I am building, users can follow others and post things. I am trying to compile a feed page that allows users to see all the posts in chronological order from people they follow (pretty ...
0
votes
0answers
14 views

Multiple sitemaps with php

I have a website to which I add a log of pages on a regular basis. Currently I am iterating through my database to get a few hundred URLs and then adding them to sitemap-1 then getting the next few ...
0
votes
0answers
21 views

If statement error with variable

I have had this problem for a while and finally i narrowed it down to what it is (I think). I am trying to put a limit on a income and the limit is $storagecap each $warehouse is = to 500 $storagecap. ...
0
votes
1answer
8 views

Create directory with script user as owner

I'm on a shared host (with safe mode on) and I'm having trouble creating directories that PHP can actually write to. Let's say my account is called matty and the apache account is called web. When I ...
0
votes
0answers
4 views

Issues with Disqus Single-sign on, no connection made

i am trying to implement disqus single sign on, but i cannot seem to make a connection, i set up a test page: <?php define('DISQUS_SECRET_KEY', 'mykey'); define('DISQUS_PUBLIC_KEY', 'myotherkey'); ...
1
vote
2answers
15 views

Get online users - node.js vs php+mysql

I am developing a web application for a client that requires me to know the names of all users currently online. The entire application is built in php with jQuery used for the front end delivery. ...
3
votes
2answers
15 views

PHP [QUERY_STRING] truncated at carriage return

first question on SO! I am running a PHP 5.3.10 on apache 2.2.22. I am only doing this: <html> <body> <?php file_put_contents('php://stderr', print_r($_SERVER, TRUE)); ?> ...
-2
votes
0answers
14 views

There are line breaks in my wordpress source code everywhere but NOT in the .php files

I am doing some minor changes for a web site and there are line breaks in the middle off every tag when I view source but there are none in the header.php etc. Any ideas why? www.midwestsalt.net
1
vote
2answers
16 views

PHP strtotime giving wrong date with GMT conversion?

I'm reading a Last-Modified header which as a string is "Mon, 21 May 2013 09:10:30 GMT" and trying to compare that to my local time() (New Zealand). But I've just noticed that strtotime is making the ...
0
votes
1answer
29 views

How to insert tags into database using jquery html and php

I want to insert these particular tags into the database. This is my HTML: <div id="tags"> <input type='text' name='tags' placeholder='Type in topic tags here seperated by commas' ...
-5
votes
1answer
54 views

Bad SQL syntax? [duplicate]

I'm getting the following error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' DStormr', 'ddo.png', ...
0
votes
1answer
28 views

Dropdown onchange does not change value for second dropdown

I'm learning Javascript and trying to do the following: In my first dropdown I want to show all the continents. In my second dropdown I want to show all the countries. For example: First dropdown: ...
0
votes
1answer
27 views

array_push only returns the last element pushed in?

The $orders variable only returned the last pushed element of the array , instead of returning all elements .. I did use array_push to push the elements to the array $orders but I only get the last ...
-6
votes
0answers
28 views

PHP comment system, where did i go wrong? [closed]

Ok, so I've been making a very basic PHP comment system but it doesn't seem to work. I want to know where I went wrong. Here's my code. <?php if($_POST)( $name = $POST('name'); $content = ...
0
votes
0answers
5 views

OAuth Error For PHP to YouTube Upload

I'm trying to implement the code for uploading YouTube videos using CodeIgniter See: https://developers.google.com/youtube/articles/codeigniter_library When I run function 'access_youtube', I do ...
0
votes
1answer
12 views

How to install PHP clamav on CENTOS

I'm really a newbie with linux, and I need to install clamav to be used on php. How can I do it? please write down step by step for each installation, as I have tried google how to install clamav, and ...
0
votes
2answers
29 views

Regex for single letter with dot after and stuff around? php

I have the following being stored in a variable >a.< >b.< >c.< but there's a bunch of other stuff around it, what regex would I use to match >(.*).< where (.*) is any ...
0
votes
1answer
20 views

Variables are not set when member has been logged in

As I'm using an old mysql_* code which is not secure I decided to try with mysqli. I found a great (I think) login code example online and I have (almost) successfully implemented this code into my ...
0
votes
0answers
47 views

Foreach break and continue in PHP select specific id

In addition to what i posted earlier today, Foreach break and continue in PHP As i forgotten to mention, the solutions you bring on helped me really to understand the process but as i used a ...
1
vote
1answer
18 views

PHP Curl - Validate and Fetch .csv file efficiently. How?

I'm very weak in curl functions. I have a script which does hourly routines to update files among networked sites. I have three concerns: Efficiency Accuracy Security Having tested it in some ...
1
vote
2answers
28 views

PHP performance with global and local variable instantiation

I have a large number of PHP functions that are taking $GLOBALS['foo'] and instantiating it local to that function like this $foo = $GLOBALS['foo']; I'm aware that this is a performance hit to some ...
0
votes
3answers
22 views

php form submission not working

I have multiple pages that I have made using this exact same method, but for some reason, no matter what I've tried, I can't get certain fields to transfer into the email fields. I get absolutely no ...
0
votes
1answer
14 views

Redirect error in php login system

So i made a simple login page, but im having a problem with the index.php page. It gives me a redirect error. Im a newbie in php coding. Hopefully someone can help me with this. <?php ...
0
votes
1answer
39 views

Javascript Ajax success image replace

I have problem. That code should change image on site after success or error: pastebin if(isset($func) and $func == 'claim_bonus'){ global $ado; $user = escape($_GET['user']); $type = ...
-4
votes
0answers
25 views

Where would an individual begin with creation of a social application? [closed]

I would like to know where one would begin in creation of a social application using c# (for use in developing a windows 8 application) or in c-Objective (in the case of an iOS app). I searched up ...
0
votes
1answer
21 views

Multi-row insert statements using mysqli and bound parameters

I'm trying to figure out how to properly achieve multiple row inserts along the format of insert to tbl values (?,?,?), (?,?,?), (?,?,?); The mysqli_bind_param doc is pretty clear on how to ...
2
votes
2answers
55 views

php recursive insert string into string

I have a huge string in PHP. In it are many url strings such as: background: #9dc9de url("@{base-url}/img/background.jpg") center top no-repeat; What is the best method to go through the entire ...
0
votes
0answers
14 views

How can I convert unicode entities like this “\u2764” in valid html entities

I am working with the twitter API and sometimes i found this characters: Today's gonna be so fun "❤" and some others like a tennis ball, a jar of beer, etc. Please see this image. How can I take ...
0
votes
4answers
32 views

PHP: Get username from session

I'm not very good at PHP and I have a little problem. I've been playing around with this script. And I can't for the life of me figure out how to echo the username of a logged in user. I tried to ...
0
votes
1answer
16 views

Using PHP Simple DOM Parser to get image from Wordpress Post

I am using the open source PHP library known as PHP Simple HTML DOM Parser to scrape the first image of a Wordpress Post. If I call the main website: $html = file_get_html('http://iadorefood.com/'); ...
0
votes
1answer
11 views

WP_query Filter through meta_key and meta_value

So far this is working by filtering through and only displaying the 'sessions' 'Fall' items. <?php $the_query = new WP_Query( array( 'post_type' => 'classes', ...
0
votes
0answers
28 views

REST: Upload Files using POST and PUT

My Rest server is separated as: GET: list/view POST: create PUT: update DELETE: delete The users table has a field profile_image, thats related to a JPG image uploaded by user on CREATE or UPDATE. ...
-5
votes
0answers
42 views

Redirect traffic between ports [closed]

I need to redirect the traffic from the SMTP port 25 to port 80. Is there any way to do this via PHP, perhaps by making proxy or something like that?
0
votes
2answers
43 views

PHP: select all requests OR check if any are exists

Is there a way to select all requests, Or check if any request is existed? here is simple way to what I want. Either if( all request are negatives ){ do this } Or if( any request is existed ){ ...
0
votes
0answers
18 views

Hexadecimal to String PDF

I have a hexadecimal value that I need to convert back to a pdf and save it. I have tried to convert to string and display but browser keeps failing to load the pdf. I am retrieving the pdf from a web ...
2
votes
0answers
51 views

MySQL Selecting twice from one table and once from another

After 3 days, I'm still having some trouble with selecting certain things in the right amount from MySQL. I'm currently working on a forum script, so my goal is to select the category, and forums ...
0
votes
1answer
13 views

how to passing post variable values into array?

i have a code which is not working properly i want to when user's select country from drop down select list? After form is submitted value should be store into courier array? For Example if user ...
0
votes
1answer
19 views

Remove element via PHP str_replace and regex

I think my the regex is off (not very good at regex yet). What I'm trying to do is remove the first and last <section> tags (though this is set to replace all, if it worked). I set it up like ...
0
votes
0answers
18 views

Sending file attachment using MIME

I am trying to send an image attachment by mail using the code below. I have a problam in emailClass.php file in line 22 fread(...). I know it because if I echo something before that line, it is ...
0
votes
1answer
39 views

How does adding thumbnails slow down my website a lot?

When I add 15 thumbnails(4kb-5kb each) my website tends to slow down a lot or even crashes on 2.5k users online, and without them it can take up to 4.5k-5k. I made a script that will make thumbnail ...
-1
votes
2answers
36 views

Javascript Uncaught SyntaxError: Unexpected string [closed]

I have problem with ajax an javascript. I have that code: function claimbonus(user, type, id){ xmlhttp = new XMLHttpRequest(); xmlhttp.abort(); xmlhttp.open("GET", ...
1
vote
0answers
39 views

PHP Error for looking through table? [closed]

So the function is below that will be used to get a guest's status in relation to an event. It is surrounded by other functions that work, but for some reason the first three lines of it is reporting ...
0
votes
1answer
7 views

PHPUnit and PHP_CodeCoverage: Enable PHP_CodeCoverage for entire code base

All of my code base is in one folder and it's sub-directories, all of my tests are in another folder and it's sub-directories. When I run PHPUnit, I point it to the test folder, and all Files in my ...
0
votes
0answers
21 views

jQuery dataTables not loading AJAX JSON data

I have a table that is populated via dataTables with information from a MySQL table. The information is prepared via PHP as proper JSON in the way dataTables expects the information. The problem I'm ...
0
votes
0answers
14 views

myql-front replacing symbols to question marks

when manually inserting into myql-front some string after refrash it replace to question marks the problem is that when im selecting that column it comes same question marks symbols to html i have ...
-1
votes
0answers
21 views

What is the best way to force SSL on admin page with Zend Framework 2?

I am building a PHP application with Zend Framework 2. I've created an "Admin" module, and this Module should redirect a user to HTTPS if accessed via HTTP. I've added a method to check scheme, and ...

1 2 3 4 5 7817