1
vote
5answers
47 views
Iteration through arrays in arrays PHP
Hello
How can i itarate this array
array(2) {
[0]=>
array(1) {
[0]=>
array(14) {
[0]=>
string(17) "ratosk8@censored"
[1]=>
string( …
1
vote
2answers
30 views
PHP can’t iterate through too high or too low
[Disclaimer: I am new to PHP, and I am just learning, so please no flamers, it really hinders the learning process when one is trying to learn, thank you.]
The code below runs …
1
vote
4answers
26 views
php include path changing based on file
I'm brand new to php and I'm trying to work with some includes in my site and can't quite figure out how to make them all work correctly.
My site structure is as follows
/ROOT/
…
2
votes
2answers
29 views
PHP: unexpected T_VARIABLE error
Okay, I know this is a common enough question, but all the solutions I've found thus far have involved a missing semi-colon or curly brace, both of which I know is not the case for …
1
vote
2answers
20 views
how can i detect hebrew characters both iso8859-8 and utf8 in a string using php
I want to be able to detect (using regular expressions) if a string contains hebrew characters both utf8 and iso8859-8 in the php programming language. thanks!
1
vote
2answers
35 views
Beginner to PHP web services
What is the best way to implement web services in PHP? I have heard about libraries like NuSOAP and WSO2 web service platform, But don't know what is the best ( or a good and easy …
2
votes
3answers
66 views
Finding a logic bug in converting Python code to PHP
The input 7|12|1|14|2|13|8|11|16|3|10|5|9|6|15|4 returns 0 by the PHP -code, while 1 by Python code: 1 means that the sums of the 4x4 magic square are the same, while 0 means the r …
0
votes
3answers
42 views
open external url in div
i want to load contents of external url like (http://www.google.com) into div,
i the way which will readable by search engine crawl.
in any one of (jquery / ajax / php )
Thanks …
1
vote
2answers
63 views
can someone explain what this php code is doing or its purpose
here is the snippit
$thisFile = str_replace('\\', '/', __FILE__);
$docRoot = $_SERVER['DOCUMENT_ROOT'];
$webRoot = str_replace(array($docRoot, 'library/config.php'), '', $thisFi …
0
votes
2answers
73 views
PHP MD5 implementation
I'm currently attempting to code one for part of a college project - binary/hex handling and cryptographic functions are well regarded in the mark scheme, so I thought I'd kill two …
0
votes
1answer
13 views
CakePHP Pagination with conditions on has_many
So I have a User table and a History table with User hasMany Histories, and I'm trying to implement pagination on the user table.
My problem is that I have search, and some of the …
0
votes
3answers
23 views
How do I create an XML file with php and have it prompt to download?
I'm using domdocument to create an xml file:
$dom = new DOMDocument('1.0', 'iso-8859-1');
echo $dom->saveXML();
When I click the link to this file, it simply displays it as a …
1
vote
4answers
48 views
Splitting up html code tags and content
Does anyone with more knowledge than me about regular expressions know how to split up html code so that all tags and all words are seperated ie.
<p>Some content <a href= …
0
votes
3answers
39 views
How to check if mysql returns null/empty
In by DB I have a table with a field called 'fk_ownerID'. By default, when I add a new table row, the 'fk_ownerID' is empty. In Toad for MySQL, this is shown as {null}. If 'fk_owne …
0
votes
4answers
37 views
How do you get a Cronjob executing a PHP script to run longer than 30 seconds.
Could you rewrite this into a cron that will run every day for longer than 30 seconds. Also, do i need to edit the .htaccess or php.ini file in the cron.php directory to say someth …
