I have some basic pageview incrementing code set up on a LAMP server (see code below).
The code starts a session, checks if pageviews is set, increments it if not and prints the variable. The page links to itself with a single href, and clicking on that link causes the pageviews count shown on screen to increment by one. It works correc...
Is strcmp() appropriate for comparing ICU collator sort keys in PHP?
The sort keys I'm asking about are from collator_get_sort_key() which are described in ICU documentation.
...
I am having trouble accessing the values in an array, the array looks like this,
Array
(
[0] => Array
(
[id] => 1661
[code] => 849651318
[job_status] => 4
[looking_for] => Lorem ipsum
[keywords_education] => Derby University
[sector_id_csv] => 10,21,9,...
I have a huge repository of files that are ordered by numbered folders. In each folder is a file which starts with a unique number then an unknown string of characters. Given the unique number how can i open or copy this file?
for example:
I have been given the number '7656875' and nothing more.
I need to interact with a file called '\s...
I'm trying to create an PHP object that can load objects in other files on demand when needed. My problem is that when I reference the files based on file location for the class definition, it can not find the files. So file structure:
/Test.php
/os/os.php (extends kernel)
/os/kernel.php
/os/libraries/lib1.php
/os/libraries/lib2....
This is a fairly simple question. Basically, I'm having a program send HardWare ID's to my PHP script as GET data. I need the PHP script check to make sure that HardWare ID is in a specific MySQL column, and if it is, { continue the script, } else { exit(); }
Problem is I'm not too good with MySQL and have no idea how to do this. Howeve...
if you take a look at a previous question
http://stackoverflow.com/questions/2690742/mod-rewrite-title-slugs-and-htaccess
I am using the solution that Col. Shrapnel proposed- but when i assign values to $_GET in the actual file and not from a request the code doesnt work. It defaults away from the file as if the $_GET variables are no...
I am developing a website using PHP and Apache.
I wanna turn my URLs from
www.example.com/book.php?book=title
into something like this, if it is possible of course:
www.example.com/book/title
Notice that the title of the books are unique and cannot be repeated.
I`ve read about this, but none of the posts were clear enough for a beg...
is there an easy way to require all files in a folder?
thanks
...
I am trying to store nested arrays in a cookie. I decided to store the array as a JSON string. However, I am getting this warning:
PHP Warning: Cookie values can not contain any of the following ',; \t\r\n\013\014' in foobar.php
Is there a recommended way of storing nested arrays in a cookie?
...
The code below is an attempt to take the WP_Widget_Categories class and use it as the basis for a custom categories widget based on the default categories widget.
I'm getting no output however and the widget is not showing up in the "Available Widgets" listing. What am I doing wrong?
<?php
/*
Plugin Name: My Categories Widget
Version: ...
How would I go about pulling in tweets from multiple twitter users with PHP and displaying them as part of one combined list on my page?
...
in PHP Consider this function:
function test($name, $age) {}
I need to somehow extract the parameter names (for generating custom documentations automatically) so that I could do something like:
get_func_argNames('test');
and it would return Array['name','age'] .
Is this even possible in PHP ?
...
I have two files:
index.php
/lib/user.php
Index contains the form:
<div class="<? echo $msgclass; ?>">
<? echo $msg; ?>
</div>
<form id="signin" action="/lib/user.php" method="post">
...
</form>
User.php makes all the processing.
It sets $msg to 'some error message' and $msgalert to 'error' in case of any error. At the end of proc...
i want to check if a file has the extensions .php. if it has i include it.
could someone help me with a regexp check?
thanks!
...
Is there a good php syntax highlighter for Emacs? I'm using Emacs 23. I've tried php-mode, but that doesn't do anything. I've tried nXhtml, but that ignores my color theme and reverts to some awful looking default. Is there one I've missed or perhaps a configuration setting I've ignored?
...
I was looking at this post, and it is close to what I need:
http://stackoverflow.com/questions/1669165/php-how-to-count-60-days-from-the-add-date
However, in that post, the calculation is performed by adding 60 days to the current date. What I need to do is calculate the date based on a variable date (and not the current date).
Someth...
$activeQuery = mysql_query("SELECT count(`status`) AS `active` FROM `assignments` WHERE `user` = $user_id AND `status` = 0");
$active = mysql_fetch_assoc($activeQuery);
$failedQuery = mysql_query("SELECT count(`status`) AS `failed` FROM `assignments` WHERE `user` = $user_id AND `status` = 1");
$failed = mysql_fetch_assoc($failedQuery);
...
Here is my current code:
$SQL = mysql_query("SELECT url FROM urls") or die(mysql_error()); //Query the urls table
while($resultSet = mysql_fetch_array($SQL)){ //Put all the urls into one variable
// Now for some cURL to run it.
$ch = curl_init($resultSet['url']); //load the urls
curl_setopt($...
Hello,
I have come across lots of code which will find all the links on a page. I would like something that takes it a step further and finds it for the whole site.
Spidering the links is a little trickier than in seems!
Any ideas will be greatly received.
...