Home
Forums
Articles
Glossary
Awards
Register
Rules
Members
Search
Today's Posts
Mark Forums Read
Account Login
User Name
Password
Remember Me?
Latest Articles
The basic usage of PHPTAL, a XML/XHTML template library for PHP
by
awuehr
on
11-10-2008
in
Tips & Tricks
Vulnerable methods and the areas they are commonly trusted in.
by
Village Idiot
on
11-04-2008
in
Classes & Objects
Simple way to protect a form from bot
by
codefreek
on
10-23-2008
in
Basic
The Basics On: How Session Stealing Works
by
wiifanatic
on
09-12-2008
in
Security & Permissions
How to keep your forms from double posting data
by
drewbee
on
07-03-2008
in
Tips & Tricks
IRC Channel
Join the friendly bunch on IRC...
(
#TalkPHP on Freenode
)
...Also available via a
web interface
.
See
this thread
for information on the TalkPHP Free Hugs Initiative™.
Subject to availability.
Associates
Wired Flame
ClientExec
Handy PHP
PHP Kitchen
PHP Tutorials
Insane Visions
Associates
TalkPHP
>
Search Forums
»
Search Results
Showing results 1 to 18 of 18
Search took
0.18
seconds.
Search:
Posts Made By:
wGEric
Forum:
Javascript, AJAX, E4X
09-19-2011, 06:45 PM
Replies:
3
Zend framework, mysql and jquery dynamic select boxes
Views:
1,340
Posted By
wGEric
Setup an onchange event on the first checkbox....
Setup an onchange event on the first checkbox. Use AJAX to load the values for the second checkbox depending on the value of the first checkbox. Populate the second checkbox with the data returned...
Forum:
General
09-09-2011, 10:13 PM
Replies:
8
eval() issue
Views:
616
Posted By
wGEric
Check out...
Check out call_user_func_array.
call_user_func_array(array($this, $method), $args);
Forum:
XHTML, HTML, CSS
07-10-2008, 10:55 PM
Replies:
2
CSS and if statements
Views:
1,140
Posted By
wGEric
Those need to go in the HTML and not the CSS. You...
Those need to go in the HTML and not the CSS. You may need to do it outside of the <style> tag. I'm not sure on that.
Forum:
MySQL & Databases
05-14-2008, 06:51 PM
Replies:
10
while loops and the proper code
Views:
1,060
Posted By
wGEric
SELECT...
SELECT forums.fid,forums.name,forums.desc,posts.pid,posts.forumid
FROM forums,posts
WHERE posts.forumid = forums.fid
When you put single quotes around it it was looking for where the column's value...
Forum:
Absolute Beginners
04-15-2008, 06:09 PM
Replies:
3
User defined function with 'return' statement -- not working
Views:
899
Posted By
wGEric
<?php // Charge for an item. $nCharge =...
<?php
// Charge for an item.
$nCharge = 100.00 ;
// Define the function.
function salestax($nCharge, $nShip = .10)
{
$nYourtotal = ($nCharge + ($nCharge * $nShip));
...
Forum:
XHTML, HTML, CSS
04-07-2008, 09:25 PM
Replies:
18
Problem with aligning list
Views:
1,247
Posted By
wGEric
Use something like background: transparent...
Use something like
background: transparent url('images/bullet.jpg') no-repeat 5px 0;
Change the 5px until it is centered with the first line.
Forum:
General
04-04-2008, 02:33 AM
Replies:
7
mysqli
Views:
954
Posted By
wGEric
The 'i' stands for improved. It's pretty much the...
The 'i' stands for improved. It's pretty much the same thing as the mysql functions but suppose to be better. I'm not exactly sure what has been improved.
Best place to go for documentation on...
Forum:
Absolute Beginners
04-01-2008, 04:48 PM
Replies:
7
Including.. :S
Views:
1,048
Posted By
wGEric
.. goes back one directory so you need to go back...
.. goes back one directory so you need to go back two, ../../
include('../../includes/config.php');
. is the same directory. .. is the parent directory. You can put as many of those in there as...
Forum:
General
03-25-2008, 08:38 PM
Replies:
4
SVN deployment to server options??
Views:
2,481
Posted By
wGEric
All you have to do is checkout a copy on your web...
All you have to do is checkout a copy on your web server from your local machine. You may have to change some settings on your router so that the port for svn goes to your computer on your local...
Forum:
XHTML, HTML, CSS
03-08-2008, 12:58 AM
Replies:
9
Lean?`
Views:
1,039
Posted By
wGEric
Oh, you don't want to display the text? <div...
Oh, you don't want to display the text?
<div style="margin: -100px auto 0; height: 200px; position: absolute; top: 50%;">
<div style="display: none;">text</div>
<img src="leftimage"...
Forum:
XHTML, HTML, CSS
03-07-2008, 11:49 PM
Replies:
9
Lean?`
Views:
1,039
Posted By
wGEric
<div style="position: absolute;"> <div...
<div style="position: absolute;">
<div style="position: absolute; top: 0; left: 0; z-index: 2;">text</div>
<img src="leftimage" />
<img src="rightimage" />
</div>
That should work as...
Forum:
Absolute Beginners
03-03-2008, 11:20 PM
Replies:
11
Best Way To Delete A Cookie?
Views:
9,373
Posted By
wGEric
I know this has already been answered but here's...
I know this has already been answered but here's what it says at php.net.
PHP: session_destroy - Manual (http://www.php.net/manual/en/function.session-destroy.php)
Forum:
General
03-03-2008, 07:52 PM
Replies:
4
PHPBB3 Password Encryption
Views:
26,891
Posted By
wGEric
You'll have to use the functions they wrote in...
You'll have to use the functions they wrote in order to insert passwords or to check whether they are correct.
Forum:
XHTML, HTML, CSS
02-15-2008, 06:46 PM
Replies:
4
making text boxes a different color?
Views:
1,069
Posted By
wGEric
<input name="Email" type="text" id="Email"...
<input name="Email" type="text" id="Email" size="50" STYLE="background: #ffcc33"/>
You need the number sign in front of the hexidecimal color number in order for yours to work. Everything else looks...
Forum:
XHTML, HTML, CSS
02-04-2008, 07:30 PM
Replies:
16
Image links!
Views:
1,125
Posted By
wGEric
I'd highly recommend not doing that. Lots of...
I'd highly recommend not doing that. Lots of people look at that to see what the link is to see if it contains XSS or anything suspicious. If I mouse over a link and get nothing then that raises a...
Forum:
General
01-24-2008, 11:45 PM
Replies:
16
Display pages php code?
Views:
1,066
Posted By
wGEric
highlight_file will do what you want. Create a...
highlight_file will do what you want. Create a page with your tutorial and then whenever you have source code, create a separate file for the source code. Use that function to put the source code in...
Forum:
The Lounge
01-22-2008, 11:05 PM
Replies:
23
Where do start Java from?
Views:
1,386
Posted By
wGEric
We've got a wankster ...
We've got a wankster ...
Forum:
General
12-10-2007, 06:15 AM
Replies:
18
phpBB3 Release Date Announced
Views:
2,259
Posted By
wGEric
phpBB3 Release Date Announced
http://www.phpbb.com/community/viewtopic.php?f=14&t=611789
Finally. It's taken a very long time. Has anyone tried the RCs? Does anyone plan on trying the gold release?
Showing results 1 to 18 of 18
All times are GMT. The time now is
05:33 AM
.
Contact Us
-
TalkPHP - PHP Community
-
Archive
-
Top
Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by
vBSEO
3.1.0
Inactive Reminders By
Icora
Web Design