Matching HTML And Storing

This is a discussion on "Matching HTML And Storing" within the Other Programming Languages section. This forum, and the thread "Matching HTML And Storing are both part of the Program Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Program Your Website > Other Programming Languages

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Feb 18th, 2008, 13:25
Junior Member
Join Date: Dec 2006
Location: London
Age: 20
Posts: 33
Thanks: 0
Thanked 0 Times in 0 Posts
Matching HTML And Storing

Hi,
I'm currently opening an HTML file, then storing it's contents into an array, which i am then, joing to store as a variable.

The reason for this, is because I want to search the variable for a certain string then turn THAT into another variable.

Code: Select all
$template = "/template.html";
open (FILE, "<$template");
@templatePage = <FILE>;
close<FILE>;

$resultTemplate = join(" ", @tempaltePage);
Thats what i have so far, but I dunno how to search the text and do what I want it to do.

Thanks.

Last edited by saltedm8; Feb 18th, 2008 at 21:16.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
storing lists of friends keyboardcowboy Website Planning 0 May 22nd, 2007 19:14
Find next matching record? Tim356 PHP Forum 5 Sep 20th, 2006 21:02
Storing images as long blobs The Hick Man PHP Forum 4 Jul 3rd, 2006 19:19
perl tricky pattern matching ktsirig Other Programming Languages 1 May 14th, 2006 02:33
Storing and Retrieving Multiple Objects From 1 ... courtjester Classic ASP 9 Sep 12th, 2004 16:37


All times are GMT. The time now is 02:35.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42