Hello i have this code:
<?php
include("/LIB/error.php");
session_start();
if (isset($_POST['Submit1'])) {
if (!isset($_SESSION['token'])) {goto dale;}
if((time() - $_SESSION['token']) < 5) {
error('Debes esperar 5 segundos para poder enviar otra informacion.');
} else {
dale:
$_SESSION['token'] = time()...
Hello,
I want to pass an environment variable in linux to apache on start up.
export MYVAR=5
--I define my environment variable on the command line
PassEnv MYVAR
--set apache to import the variable in apache config file
apachectl restart
--when I restart apache I don't get an error message. However I have noticed
that if I do not c...
For now I just want to use Gearman for background processing. For example, I need to email a recipient that they have a private message waiting for them once the sender submits their message into the DB. I assume I can run the worker/client and server on my primary server but I have no problems offloading some of the tasks to a different...
<?php
//connect to database ....
//select query ....
if(isset($_GET["link"])==false){
echo "sample 1";
}else{
echo "sample 2" ;
}
?>
<script type="javascript">
function Link(id)
{
location.href='linktest.php&link='+id;
}
</script>
<html>
<input type="button" value="link test" onclick="javascript: Link<?php echo $row['id']; ?>">
</...
Hi, I'm new to PHP, and I can't figure this out.
I'm trying to figure out how to access the data of a group of select boxes I have defined in my HTML code. I tried grouping them as a class, but that doesn't seem to work... maybe I was doing it wrong.
This is the following HTML code.
<form action="" method="post">
<select class="foo">...
my code for the php page displaying the divs
<?php
session_start();
require_once("classlib/mainspace.php");
if (isset($_SESSION['username'])==FALSE) {
header("location:login.php");
}
$user = new User($_SESSION['username']);
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transi...
What I want to do is when user goes to one page I redirect him to another page while sending some post variables to this latter page.
...
I have a mysql table - request_events with three fields; request_eventsid,datetime,type.this table will track all the activities of my website day wise and also type wise.thus,type may be 1 or 2.I need to display an open-chart for understanding the progress.So I need to retrieve the ratio of type2/type1 as input day wise.How can I get a...
Hi, when using scaffolding on a controller the views render fine and the app even attempts to insert the data; the problem is that the scaffold is completely ignoring the relations I'm defining in my model class, in fact it's ignoring the class entirely as I can delete the file and the controller still scaffolds and render the crud from ...
Javascript
<script type="text/javascript">
function Edit(id)
{
if(confirm("Are you sure to edit?")==true)
{
location.href='employee_set.php&edit='+id;
}
}
</script>
PHP
<?php
if(isset($_GET["edit"])==false) {
echo "no response";
} else {
echo "link success";
}
?>
My problem is the Javascript is OK. The l...
I have my Java site running under IIS 7. I need to install wordpress blog in it. I've installed and configured PHP in IIS. I have tested the PHP handler by creating a separate site, everything works fine, phpinfo() gives the desired output.
However, I'm having problem running the PHP files inside my Java web application. I've put my tes...
I have a PHP regex that I want to fail if the matched word after /blog is just feed.
This MUST be done within the regex itself, not using any other PHP syntax.
The regex currently looks like this:
blog/([a-zA-Z0-9\-]+)
What would I add to this to properly negate the regex if feed is found after blog/?
...
I have a small chunk of coding I need to take from ereg to preg_match. Here is the code.
function be_file_list($d, $x) {
foreach (array_diff(scandir($d), array('.', '..')) as $f) {
if (is_file($d . '/' . $f) && (($x) ? ereg($x.'$',$f) : 1)) {
$l[] = $f;
}
}
return $l;
}
This code works as expec...
Hello,
For some reason it seems to be working fine, only when I used <?php ?> tag. Does not work with <? ?>
What's wrong here?
Thanks
Jean
...
hi all,
I want to know that is there any way to know after which page an user is leaving the website.
So that I can track that page and work to improve the content of that page.
I am using PHP as backend code.
...
I have written some C/C++ extension modules for PHP, using the 'old fashioned way' - i.e. by using the manual way (as described by Sarah Golemon in her book).
This is too fiddly for me, and since I am lazy, and would like to automate as much as possible. Also, I have used SWIG now to generate extensions to Python, and I am getting to li...
I'm writing some backend script for a twitter app and heres how it's going
On the app you click a button that sends you to login.php on my server which logs into my database connects to twitter with my consumer key and secret: $to = new TwitterOAuth($consumer_key, $consumer_secret);
$tok = $to->getRequestToken();
$request_link = $to->g...
I am a little bit new to the PHP/MYSQL arena, and had an idea to be able to interact with my Database by using a hidden Iframe to run PHP pages in the background(iframe) on events without having to leave the current page?
Good? Bad? Common Practice? Opinions?
...
Hello
i want to search table and get best match from the table using like not FULL TEXT SERCH.iS there any wat to do?
...
Is there any default function to clear only the values of an array. For ex arr{10,3,3,34,56,12} to
arr{0,0,0,0,0,0}
...