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 17 of 17
Search took
0.07
seconds.
Search:
Posts Made By:
CoryMathews
Forum:
XHTML, HTML, CSS
05-25-2009, 04:51 AM
Replies:
26
Help with CSS on IE
Views:
1,660
Posted By
CoryMathews
Sorry forgot win7 has ie8 not ie7.. that would be...
Sorry forgot win7 has ie8 not ie7.. that would be why it looks the same.
Yes 4 html calls instead of 1, but for now it does not matter.
The actual size of your screen (15 inch, 17inch w/e) does...
Forum:
Absolute Beginners
02-03-2009, 01:35 PM
Replies:
5
single quotes or double quotes in php
Views:
1,353
Posted By
CoryMathews
the amount of speed gained won't matter to much....
the amount of speed gained won't matter to much. Usually thats not the bottleneck. So it really comes down to which one you want to use and which one is easier in the specific case.
Forum:
Advanced PHP Programming
01-23-2009, 07:06 PM
Replies:
5
Help with Pagination of search results
Views:
3,107
Posted By
CoryMathews
I have never used this api however the...
I have never used this api however the documentation states that you can set the page size and current page, thus you would be able to limit the resutls to a specific page useing that. You will be...
Forum:
General
01-09-2009, 02:31 PM
Replies:
10
Need help with a User class
Views:
690
Posted By
CoryMathews
you just need to pass in the username and...
you just need to pass in the username and password to the login then you do your query to check if its a valid login or not. the login function should return a true or false. The db class can be...
Forum:
Advanced PHP Programming
01-07-2009, 07:47 PM
Replies:
7
Need help creating a function
Views:
686
Posted By
CoryMathews
Ye you really should look at putting another...
Ye you really should look at putting another field in the db (normally the key field) and add auto increment to that. Then as a report number you can just add zeros to the front when you display it...
Forum:
XHTML, HTML, CSS
12-23-2008, 10:21 PM
Replies:
12
DIV side by side
Views:
2,301
Posted By
CoryMathews
.divclass { width:200px; float:left;...
.divclass { width:200px; float:left; display:block; }
then after all the divs you will need one more div with
<div style="clear:both"></div>
that should work.
Forum:
Absolute Beginners
11-03-2008, 11:18 PM
Replies:
1
Why ? - because of version ?
Views:
846
Posted By
CoryMathews
You don't need brackets on an if statement. They...
You don't need brackets on an if statement. They are optional. You only need them if you want more then 1 line within the if statement. I believe the error is on the header redirect. I have noticed...
Forum:
XHTML, HTML, CSS
10-25-2008, 06:55 PM
Replies:
12
Centering DIV to resolution
Views:
2,633
Posted By
CoryMathews
#wrapper { margin: 0 auto; width:800px; } will...
#wrapper { margin: 0 auto; width:800px; }
will work in all browsers. You dont need a text align center in the body tag. I have never done that and it always works in all browsers.
Forum:
Advanced PHP Programming
10-20-2008, 11:17 AM
Replies:
12
Need some help, and i have got some questions to ask as well.
Views:
688
Posted By
CoryMathews
A good thing for storing passwords is to encrypt...
A good thing for storing passwords is to encrypt them and to use a salt with that like you said. An example would be
So then when you create the account you would use this on the password before...
Forum:
Javascript, AJAX, E4X
09-14-2008, 09:15 PM
Replies:
8
Create your own advanced WYSIWYG editor
Views:
1,532
Posted By
CoryMathews
Pretty good tutorials. Looking forward to more on...
Pretty good tutorials. Looking forward to more on it.
Forum:
XHTML, HTML, CSS
09-11-2008, 07:40 PM
Replies:
3
CSS not imported in Opera IB
Views:
898
Posted By
CoryMathews
? I see it in opera.
? I see it in opera.
Forum:
MySQL & Databases
07-20-2008, 10:00 PM
Replies:
5
Speeding up MySQL updates
Views:
1,110
Posted By
CoryMathews
You might want to at least implement some stored...
You might want to at least implement some stored procedures. These will speed up the time it takes to run a query because they will be precomipled instead of compiling at runtime.
Forum:
Absolute Beginners
07-18-2008, 11:07 PM
Replies:
3
what is wrong in this line :S?
Views:
871
Posted By
CoryMathews
echo '<div class="hVlog" style="text-align:...
echo '<div class="hVlog" style="text-align: center">
<a href="http://www.youtube.com/v/'.$linkarray[1].'" class="hVlogTarget" type="application/x-shockwave-flash" onclick="vPIPPlay(this, \'\', \'\',...
Forum:
Absolute Beginners
07-18-2008, 10:52 PM
Replies:
3
what is wrong in this line :S?
Views:
871
Posted By
CoryMathews
<a...
<a href="http://www.youtube.com/v/'.$linkarray[1]."
Just for got a ' before the "
and then escape the ' with \' when you actually want to print out a '
Forum:
XHTML, HTML, CSS
06-28-2008, 01:29 PM
Replies:
9
Define different Bg color for InputText & InputSubmit
Views:
1,210
Posted By
CoryMathews
Heres a tut I wrote a while back. Images Within...
Heres a tut I wrote a while back.
Images Within Form Fields | CoryMathews.com (http://corymathews.com/?p=65)
Forum:
Absolute Beginners
06-24-2008, 03:45 AM
Replies:
11
Clarification on INCLUDE()
Views:
971
Posted By
CoryMathews
when you use includes you MUST use relative paths...
when you use includes you MUST use relative paths in order for variables to work between pages.
Forum:
Member Introductions
01-15-2008, 10:31 PM
Replies:
10
Hi
Views:
761
Posted By
CoryMathews
welcome lots of good material here to learn from.
welcome lots of good material here to learn from.
Showing results 1 to 17 of 17
All times are GMT. The time now is
05:33 PM
.
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