So I'm trying to take out all the text in my html page between the elements of <!-- START_CAPTURE_1 --> and <!-- END_CAPTURE_1 -->
So far I'm using a preg_split.
$start = preg_split("/<!-- START_CAPTURE_1 -->/", $html_page_text, -1, PREG_SPLIT_OFFSET_CAPTURE);
$end = preg_split("/<!--...
So I have some html sheets done in template format, which I'll then parse and add my mysql data to. The thing is though, when the whole sheet gets returned to me in a form, I want to be able to split it down into sections and store it independently.
I came up with the idea of using unused...
So I came across this piece of code to-day. I'm reasonably familiar with variable variables but I still don't really get this.
It's used to enumerate the value element of a submitted form's name-value pair. So that if your name-value pair was hidden=submit. Then you'd end up with a variable...
What's the best way to go if you want to create graphs on-the-fly by pulling data out of a database? PHP would be the most handy, but I've heard some good things about python.
What's the most efficient method for dynamic graphs ?
I want the links on my page to be relevant to whatever page I'm using at that minute eg.
<a href='/demo.php?style=classic&mode=coverletter'>
<a href='/test.php?style=classic&mode=coverletter'>
I just have one template sheet, so I just want to output something like this
<a...
I'm outputting a page of html as a value for in an <input tag
<div><input type="hidden" id="editor1" name="editor1" value=
"<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> ... "
I need to serve up the page as htmlentities in order to fit it into...
I'm opening a file first, then parsing the contents with my_object function, and then I'd like to feed that output into another object.
Unfortunately though, the second object only accepts files instead of code on-the-fly as it were. Rather than start messing around with my template object...
Is there any way to empty a file in php. Bascially I open a file and read in some values, then I feed the file into another function. I want to empty the file again for the next time.
There doesn't seem to be much functionality to fwrite() ? It doesn't give me the option of writing over the...
I'm setting up a fedora core 2 box at the moment and I'm having some difficulties with apache. Where is it that I can find the apache-devel rpm ?
I need to use the apxs program to install the mod_security manual. But apparently it's not in the apache rpm.
I've looked around for guides to FC2...
What exactly are the security issues with regards to leaving a compiler on my system ? I'm installing an rpm of gcc at the moment. And I'm wondering what I should do with it when I'm finished. Does a
chown root
chmod 700
... suffice ? Can't the intruder at user level just download and install...
I'm going to try to run an webhosting site on it's own dedicated server with goDaddy. The deal seems to be a pretty good one ... 1GB RAM, 500GB BW, 120GB hd, celeron 2.0GHz with Fedora Core 2 for $90/month plus extra for ftp backups and ssl cert.
What I'd like to do is to sell domains names as...
Can I put a styles tag outside of the head part of the document ?
<html>
<head>
<style1></style>
</head>
<body>
<style2></style>
</body>
</html>
... is this illegal ? will it validate ?
Looking for a regular expression in php to change
$string="
template_name,
head_stylesheet,
body_background,
body_bgcolor
";
into
$string="
$template_name,
$head_stylesheet,
$body_background,
$body_bgcolor
";
... the best I could manage was
preg_replace("/$/","$\$",$string);
Hi guys,
I'm in a bit of a design pickle at the moment. I have a bunch of templates designed with tables and a bunch of styles which are all non-table css.
Something is going to have to give. It would be easier to convert the css styles to fit the template tables methinks !
What are the...
So I'm putting to get some tables from form input and from session data. It's kind of going like this
LETTER_TABLE:
LETTER_ID LETTER_NAME LETTER_TEXT USER_ID
(auto_increment) (KEY)
... so I have around six tables which are all based around that...
How much effort do you put into making sure your php scripts/apps are compatible to non-javascript enabled browsers ?
Do you use javascript strictly for client-side form first-time-validation. Or would you let javascript play an important part in your script/app ?
Also, what do you call your...
Is there anyway to tell the name of the form being submitted from the php script. I have multiple forms on my page and I want to be able to distinguish between them easily.
I don't want to have to send them to different directories or parse the name attributes unless I have to.
I seem to be getting a really annoying sql problem on a very simple query
$sql = "INSERT INTO constellation ( constellation_coverletter )
VALUES ( $val_1 )
";
where $val_1 = 'coverletter'
It gives me
SQL Error : 1054 Unknown column 'coverletter' in 'field list'
INSERT INTO...
I want to point one of my template objects towords a template file. However I want to be able to use a shortcut to that file instead of the actual file.
I'm running on a windows system at the moment, but I'll be using a *nix server. Is there anyway to do this ? I've tried the obvious way of...
I'm thinking about offering my users an option to purchase a web domain as a tie-in to the product I want to sell on my site.
Is it difficult to set up a 'search for domain name' function that's tied into verisign's database ? I want my users to be able to see if their chosen name is already...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.