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.02
seconds.
Search:
Posts Made By:
martins256
Forum:
The Lounge
01-06-2009, 02:37 PM
Replies:
12
Where are you from?
Views:
824
Posted By
martins256
I'm from...
I'm from Latvia.
http://maps.google.com/maps?f=q&hl=en&geocode=&q=latvia&sll=56.879635,24.603189&sspn=2.935678,8.811035&g=latvia&ie=UTF8&z=7
Forum:
The Lounge
12-25-2008, 08:50 PM
Replies:
2
what do you like on a music community
Views:
696
Posted By
martins256
lyrics playlists music videos
lyrics
playlists
music videos
Forum:
Absolute Beginners
12-12-2008, 05:34 AM
Replies:
2
scraping a webpage for text
Views:
963
Posted By
martins256
Why can't you use strip_tags() ? <?php echo...
Why can't you use strip_tags() ?
<?php
echo strip_tags(file_get_contents('http://www.gothostin.com/sarmenhb'));
?>
Forum:
Javascript, AJAX, E4X
11-25-2008, 09:13 AM
Replies:
2
Could I use Ajax to preload a dropbox?
Views:
1,747
Posted By
martins256
It's easy with jquery! I'll make an example for...
It's easy with jquery! I'll make an example for you:
some place in your form
<select name="authors" id="authors" >
<option value="1">French</option>
<option...
Forum:
XHTML, HTML, CSS
11-19-2008, 05:51 AM
Replies:
3
IE Hack
Views:
919
Posted By
martins256
You might have the IE double margin...
You might have the IE double margin problem.
http://www.positioniseverything.net/explorer/doubled-margin.html
Forum:
General
11-09-2008, 08:59 AM
Replies:
2
what is the purpose of microtime() ?
Views:
605
Posted By
martins256
You can use it for benchmarking. Do something...
You can use it for benchmarking. Do something like this:
<?php
//put this at the top of your script
$time_start = microtime(true);
// here should be all your php stuff
usleep(100);
Forum:
Absolute Beginners
09-28-2008, 09:24 AM
Replies:
4
Error in Mysql
Views:
949
Posted By
martins256
The SQL should work if it looked like...
The SQL should work if it looked like this:
INSERT INTO users(username, password, email, fullName) VALUES('aldin', '9cdfb439c7876e703e307864c9167a15', 'aldin@yahoo.com', 'aldin moreno')
read more...
Forum:
Absolute Beginners
09-28-2008, 08:40 AM
Replies:
4
Error in Mysql
Views:
949
Posted By
martins256
What do you get when you echo $usrAdd; ? I think...
What do you get when you echo $usrAdd; ?
I think that you haven't added ' ' in the SQL.
try this:
$md5pass = quote_smart(md5($_POST['password']));
$_POST['username'] =...
Forum:
Absolute Beginners
09-25-2008, 07:25 AM
Replies:
4
writing field data into the url?
Views:
1,138
Posted By
martins256
The <form> element have a method attribute, where...
The <form> element have a method attribute, where you can put "get" or "post". When you submit a form with "get" there the variables will appear in url but with "post" attributes will be sent to...
Forum:
Advanced PHP Programming
09-25-2008, 07:08 AM
Replies:
3
Getting started with OOP
Views:
912
Posted By
martins256
I started by making a class for images(resizing,...
I started by making a class for images(resizing, adding watermarks, making thumbnails).
Forum:
XHTML, HTML, CSS
09-20-2008, 08:32 AM
Replies:
4
floating list elements
Views:
1,105
Posted By
martins256
I made you some samples :) right...
I made you some samples :)
right (http://martins256.lv/samples/menu-floats/right.html)
center (http://martins256.lv/samples/menu-floats/center.html)
left...
Forum:
XHTML, HTML, CSS
09-20-2008, 08:02 AM
Replies:
6
alternative to cssedit?
Views:
2,088
Posted By
martins256
TopStyle and TopStyle lite (free)
TopStyle and TopStyle lite (free)
Forum:
The Lounge
03-28-2008, 10:54 PM
Replies:
4
Math Help -.-..I'm stuck geometry question
Views:
744
Posted By
martins256
square of triangle(sot) = a*b/2 sot = 6*8/2 sot =...
square of triangle(sot) = a*b/2
sot = 6*8/2
sot = 48/2
sot = 24
//a is the side of triangle to which the height is pointing
// if you imagine a triangle ABC and the height is A to a point on BC...
Forum:
The Lounge
03-28-2008, 05:15 PM
Replies:
4
Math Help -.-..I'm stuck geometry question
Views:
744
Posted By
martins256
Sorry for my bad English ;) the line that is ||...
Sorry for my bad English ;)
the line that is || the side of length 6 is right. the triangles bottom sides length is 10 (32-22=10)
So you get a triangle with sides 6 8 10 these numbers are specific...
Forum:
Script Giveaway
03-26-2008, 04:25 PM
Replies:
8
Simple Image Uploader
Views:
1,502
Posted By
martins256
$_FILES['userfile']['type'] is sent by the user...
$_FILES['userfile']['type'] is sent by the user thats uploads the file. you should check the file type with getimagesize()
Forum:
Tips & Tricks
03-25-2008, 06:43 PM
Replies:
53
Outputting data without print/echo
Views:
17,519
Posted By
martins256
<?php header ("Content-type: image/png"); $im =...
<?php
header ("Content-type: image/png");
$im = @imagecreatetruecolor(51, 20)
or die("Cannot Initialize new GD image stream");
$text_color = imagecolorallocate($im, 255, 255,...
Forum:
Libraries & Extensions
03-15-2008, 09:29 PM
Replies:
5
Zend Framework 1.5
Views:
1,641
Posted By
martins256
The best time to start using Zend Framework :D
The best time to start using Zend Framework :D
Forum:
Member Introductions
03-15-2008, 03:11 PM
Replies:
3
Hi from martins256
Views:
756
Posted By
martins256
Hi from martins256
Hi everyone. My name is Mārtiņš (Martins). I am from Latvia (if u don't know where is that :D (http://maps.google.com/?ie=UTF8&ll=56.968936,25.301514&spn=2.79682,10.283203&t=h&z=7)) I am 18 years...
Showing results 1 to 18 of 18
All times are GMT. The time now is
06:06 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