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.03
seconds.
Search:
Posts Made By:
Krik
Forum:
Absolute Beginners
07-18-2010, 02:39 AM
Replies:
9
opening a page only clicking a banner
Views:
641
Posted By
Krik
Writing up all the code and explaining it would...
Writing up all the code and explaining it would be a very long post. I would suspect through explanation would be up around 10 printed pages. Just the code alone looks to be a minimum of 50 lines....
Forum:
Javascript, AJAX, E4X
04-04-2009, 09:53 PM
Replies:
19
countdown
Views:
741
Posted By
Krik
You are call them correctly bu the <div>'s are...
You are call them correctly bu the <div>'s are all blank. So blank minus 1 or '' -1 equals (=) what?
Blank.
Put a number in those divs, and only a number.
Forum:
Javascript, AJAX, E4X
04-04-2009, 07:58 PM
Replies:
19
countdown
Views:
741
Posted By
Krik
I thought I should give you some code that has...
I thought I should give you some code that has some performance improvement.
You may want to ignore this till you get the above working.
In my previous code for some dumb reason I made the function...
Forum:
Javascript, AJAX, E4X
04-04-2009, 06:31 AM
Replies:
19
countdown
Views:
741
Posted By
Krik
Now here is were having good programing skills...
Now here is were having good programing skills will come into play.
The first issue of counting down instead of up. While I do not wish to be coy in my answer the solution to that is the same as if...
Forum:
Javascript, AJAX, E4X
04-03-2009, 09:20 PM
Replies:
19
countdown
Views:
741
Posted By
Krik
Try this <html...
Try this
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<script...
Forum:
XHTML, HTML, CSS
03-20-2009, 12:43 AM
Replies:
39
i'm happy to say im going back with designing with some tables
Views:
3,434
Posted By
Krik
Yes inline will override the styles set in the...
Yes inline will override the styles set in the style tags or a CSS file.
I should note that placing inline style ahead of the id or class tag causes the styles set to the id or class tag to...
Forum:
XHTML, HTML, CSS
03-19-2009, 10:35 PM
Replies:
39
i'm happy to say im going back with designing with some tables
Views:
3,434
Posted By
Krik
Their are a few basics you need to get in order....
Their are a few basics you need to get in order.
First, you need to make sure on sizes you use "px". example {top: 100px;} is better that {top: 100;}
Second you can not run-on style attributes,...
Forum:
Absolute Beginners
03-19-2009, 02:52 AM
Replies:
10
Using fopen function....
Views:
893
Posted By
Krik
Yep that will work
Yep that will work
Forum:
Absolute Beginners
03-19-2009, 02:18 AM
Replies:
10
Using fopen function....
Views:
893
Posted By
Krik
Soemthing like this may help <?php function...
Soemthing like this may help
<?php
function WritetoFile($file, $content) {
$fp = fopen($file, 'w');
fwrite($fp, $content);
fclose($fp);
}
$newcontent = 'The new content for myfile.txt';
Forum:
Absolute Beginners
03-18-2009, 02:45 AM
Replies:
1
the index File.
Views:
741
Posted By
Krik
Usually the index file is just the basics. But it...
Usually the index file is just the basics. But it does depends on what your doing.
A CMS is a very large project and how they set it up will vary greatly from a smaller project.
Generally I use the...
Forum:
Absolute Beginners
03-18-2009, 02:21 AM
Replies:
3
php solution for a small script
Views:
797
Posted By
Krik
First the best site to start with for learning...
First the best site to start with for learning PHP is php.net (http://www.php.net) the home of PHP. Should note for you that php.net is several languages so you will be able to understand it more...
Forum:
XHTML, HTML, CSS
03-18-2009, 02:00 AM
Replies:
39
i'm happy to say im going back with designing with some tables
Views:
3,434
Posted By
Krik
Not likely the W3C set the standards for both. If...
Not likely the W3C set the standards for both. If there is any conflict it would be due to a browser straying from the standards W3C has implemented.
As for books just get yourself a quick reference...
Forum:
Show Off
03-13-2009, 05:45 AM
Replies:
144
World of Warcraft Armory xml Grabber with cURL
Views:
43,221
Posted By
Krik
Yea and you are just beginning. PHP is truly key...
Yea and you are just beginning. PHP is truly key to having very powerful and dynamic sites. What you will learn as you go will help you in picking up other languages like SQL and Javascript, as well....
Forum:
Show Off
03-13-2009, 05:36 AM
Replies:
144
World of Warcraft Armory xml Grabber with cURL
Views:
43,221
Posted By
Krik
The problem your having is fairly simple, if you...
The problem your having is fairly simple, if you have bit more knowledge in DOM (document object model) you would have seen it. Of course if I would have tested before giving it to you I would have...
Forum:
Show Off
03-11-2009, 11:25 PM
Replies:
144
World of Warcraft Armory xml Grabber with cURL
Views:
43,221
Posted By
Krik
Adding it to your page is real simple. Make sure...
Adding it to your page is real simple. Make sure first that the page you want to see it on is a .php file (roster.php). Then just pace the code were you need it to run
<html>
<body>
<!-- your...
Forum:
Show Off
03-11-2009, 06:16 PM
Replies:
144
World of Warcraft Armory xml Grabber with cURL
Views:
43,221
Posted By
Krik
Yea don't mind yinx. Some of are willing the give...
Yea don't mind yinx. Some of are willing the give out 10 or 20 lines of code. I figure giving you a few lines of code is easier than you going and find some out of date and partially irrelevant code...
Forum:
Absolute Beginners
02-03-2009, 04:34 AM
Replies:
5
single quotes or double quotes in php
Views:
1,352
Posted By
Krik
Go with single quote better performance and when...
Go with single quote better performance and when you have to echo out HTML you can keep your double quotes for your HTML.
echo '<span id="myspan">' . $mytext . '</span>';
Also a note on the...
Showing results 1 to 17 of 17
All times are GMT. The time now is
06:21 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