It's been a long running issue that I've come across in many-a-hot-and-steamy coding sessions.
One person codes this way another codes that way. So after much push and pull I'm curious...
Is there any correct way of phrasing a PHP 'IF ELSE' statement?
Personally I use the:
if ($variable == 'setvalue')
{
$variable = executefunction...
hello. a quick question. I am using the jQuery.forms.js plug-in.
I have a form that posts to a php page and returns data with jSon.
The data that is returned is code for a new form (it replaces the form that was used to post the information). The new form is not bound to any jQuery functions, as it was not around when the page loaded...
I have created css page called style.php and included this the top:
<?php header("Content-type: text/css"); ?>
Does this make you cringe. Is it a terrible idea? I am doing this because I have created a CMS that allows the admin to control colors on pages (so the style.php script queries the database and grabs the hex values).
Any th...
I'm trying to make a simple MySQL Admin thing with php and jQuery. I've never used jQuery so my code is probably quite lol-worthy. The problem I'm having with the code is that when I click the button, nothing happens. I know the even fires because if I open the html file in firefox (not going to the url, using the file:/// thing) and cli...
Hi,
is there any chance you could show files name inside folder? Also will it support korean, chinese and other language names?
Thanks
...
Hi Im making a website in php with a microsoft access database through odbc and i have come across a small problem let me show you my codes first.
<form method ="POST" action="maxtimestamplog.php">
Longitude <input type="text" name="longitude" /><br/>
Latitude
<input type ="text" name = "latitude"/>
<input name="ok" type="submit" val...
I have a class for interacting with a memcache server. I have different functions for inserting, deleting and retrieving data. Originally each function made a call to memcache_connect(), however that was unnecessary, eg.
mc->insert()
mc->get()
mc->delete()
would make three memcache connections. I worked around this by creating a cons...
Hey there
I have a pretty complex database with loads of different tables for different things, every thing of which has a timestamp (Y-M-D h:m:s format)
Is there a way I can limit my SQL query to just results from a certain timespan, for example a week ago?
If needbe I have a function to convert these timestamps into unix as
sqlToUn...
Once in a while my shared hosting environment gets compromised because, well, I failed to keep the portfolio of my installed apps patched up.
Last week, it was because of an old and unused installation of a PHP application called Help Center Live.
The result was that every single PHP file on the server (and I have several Wordpresses, Jo...
Ok so I have the following code. I'm trying to output some xml so that it can be read with jQuery, but for whatever reason, when I try to add an element in the array to a variable, it just turns the variable to 0. I did a print_r() on the array, and it's normal.
Code
if ($content == "tables") {
$result = mysql_query("show tables");...
Hi,
I've working on a web application, that should be able to accept tags and search queries in multiple languages. That's not asking too much, is it?
Now, on my development MAMP server everything is great. I add multilingual tags, search in any language I want etc.
On the other hand, on the production WAMP server, multilingual characte...
Why can't I filter results on the attribute value rather than the index?
Something like this fails.
foreach ($portfolio->clientGroup[$id]->client['name=foo']->src as $src) {
echo $src . '<br />';
}
But this works.
foreach ($portfolio->clientGroup[$id]->client[0]->src as $src) {
echo $src . '<br />';
}
...
Hi,
I am writing php web applications, and simply deploy them via FTP.
To make it work, I often have some tweaking/debugging to do given that I have little control over the (free) web server hosting me, so what's working in my local environment might not work live.
For example I keep a separate php file containing class_db_myapp.php wh...
By default error page in ZF looks like this:
*Fatal error: Uncaught exception 'Zend_Form_Exception' with message 'Method setDeault does not exist' in /usr/home/.../library/Zend/Form.php:2838 Stack trace: #0 [internal function]: Zend_Form->__call('setDeault', Array) #1 /usr/home/.../application/admin/controllers/TagsController.php(40): ...
Hello all.
I am attempting to submit a form via jQuery. My form contains fields and a file that must be uploaded. It is of type ENCTYPE="multipart/form-data".
I can receive all my field values using: post = $('#myForm').serialize();
But how do I receive the $_FILES array? I need this to process the uploaded file.
Is this possible usin...
I'm writing a website in PHP that aggregates data from various other websites. I have a function 'returnPageSource' that takes a URL and returns the html from that URL as a string.
function returnPageSource($url){
$ch = curl_init();
$timeout = 5; // set to zero for no timeout
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // mea...
PHP 5.2.8 is refusing to load php_pgsql.dll, with the following error:
Warning: PHP Startup: Unable to load dynamic library 'D:\PHP\ext\php_pgsql.dll' - The specified module could not be found.
in Unknown on line 0
The .dll exists in PHP/ext/.
Has anyone else had this problem with PHP on Windows before?
...
How safe would you say this is?
$pages = array("about", "help", "login");
$pagesWithId = array("shownews", "showuser", "showfile");
if (in_array($_GET['page'], $pages)) {
include('includes/'.$_GET['page'].'.php');
include('templates/'.$_GET['page'].'.html');
}
foreach ($pagesWithId as $page) {
if (ctype_digit($_GET[$page])) {
...
i am new to flex development my question is How do i pass variables between flex 3 and a mysql database using php? i was told the best way is to AMFPHP but that seems like an over kill or may be not am not sure.. any ideas?
...
As the title said, how to create multiple game servers?
I am about to develop an online game, and this is my first time. Game play in flash and database things are handled by php and mysql. I have questions about server. After user logged in, they should select a server. How do I create multiple servers for users to select? Is it better...