Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 23 of 23
Search took 0.06 seconds.
Search: Posts Made By: amy2go
Forum: Perl/ CGI 08-14-2002, 01:57 PM
Replies: 2
Views: 2,661
Posted By amy2go
You’re a genius! Thank you, thank you. And that's...

You’re a genius! Thank you, thank you. And that's exactly what I needed anyway, because I would like the user to be able to specify where they want the file to be placed.

Amy
Forum: Perl/ CGI 08-13-2002, 04:48 PM
Replies: 6
Views: 1,625
Posted By amy2go
I recommend two books for learning Perl: 1....

I recommend two books for learning Perl:

1. Perl and CGI for the World Wide Web, Visual QuickStart Guide by Elizabeth Castro...about $20 US dollars. This will quickly get anyone started on...
Forum: Perl/ CGI 08-13-2002, 03:19 PM
Replies: 3
Views: 1,864
Posted By amy2go
I would put your html inside your perl script...

I would put your html inside your perl script like this:

print <<"HTML";

<html>
<head>
<body>
</body>
</html>
Forum: Perl/ CGI 08-13-2002, 02:32 PM
Replies: 2
Views: 2,661
Posted By amy2go
Changing directories

Okay, hopefully there is a simple answer to this...there usually is, right? I am saving data as .csv files (comma-separated) to be opened later in Excel. That part works. But when I change...
Forum: General web building 08-01-2002, 09:02 PM
Replies: 2
Views: 1,982
Posted By amy2go
Email a Web Page

I would like to be able to email a fully formatted HTML page. I know this can be done since I receive the news, etc, as a web page, but I don't know how to include that in my code, or even where to...
Forum: HTML & CSS 08-01-2002, 07:46 PM
Replies: 2
Views: 1,235
Posted By amy2go
Thanks for the tip. After adding border=1 to the...

Thanks for the tip. After adding border=1 to the table, I realize that it is aligning just fine, so I just removed the width attribute.

Amy
Forum: HTML & CSS 08-01-2002, 05:04 PM
Replies: 2
Views: 1,235
Posted By amy2go
Aligning a table within a div

I'm still new to all this web programming, but here's what I've got. I can't seem to get the table to center inside the div. Please help.(Btw, I took out the scripting and a few other things so it...
Forum: Perl/ CGI 07-19-2002, 03:22 PM
Replies: 9
Views: 1,920
Posted By amy2go
You're right, my mistake. It was only replacing...

You're right, my mistake. It was only replacing the first i. Sorry.

Amy
Forum: Perl/ CGI 07-18-2002, 07:50 PM
Replies: 9
Views: 1,920
Posted By amy2go
dmittner >> Your code worked fine - (of course,...

dmittner >>
Your code worked fine - (of course, you need to initialize the $newchar variable to something first or it will just delete all the i's) like: $newchar = a; will replace all the i's with...
Forum: Perl/ CGI 07-18-2002, 07:22 PM
Replies: 9
Views: 1,920
Posted By amy2go
Unhappy amy2go

Oh well, not very good at VB script here, but you get what I'm saying.

-Amy
Forum: Perl/ CGI 07-18-2002, 07:21 PM
Replies: 9
Views: 1,920
Posted By amy2go
forgot to escape those bold tags i.e. your...

forgot to escape those bold tags

i.e. your expression (.*) included anything between \[b\] and \[/b\] including other \[b\] 's and \[/b\] 's
Forum: Perl/ CGI 07-18-2002, 07:12 PM
Replies: 9
Views: 1,920
Posted By amy2go
The * is known as a quantifier (which says any...

The * is known as a quantifier (which says any number of occurrences). There are other quantifiers:
+ which says one or more occurrences
? which says zero or one occurrences
{n} which says exactly...
Forum: Perl/ CGI 07-18-2002, 05:04 PM
Replies: 9
Views: 1,920
Posted By amy2go
$to_edit =~ s/\[b\](.*?)\[\/b\]/\<b>$1\<\/b>/isg;...

$to_edit =~ s/\[b\](.*?)\[\/b\]/\<b>$1\<\/b>/isg;

I just added the ? in the inner set of parentheses(.*?)

-Amy
Forum: Perl/ CGI 07-09-2002, 11:51 PM
Replies: 3
Views: 1,862
Posted By amy2go
okay, I really don't know where I'm supposed to...

okay, I really don't know where I'm supposed to post this question because I don't know where the answer lies (in javascript, perl, whatever). My original file is in perl. You can make any html file...
Forum: Perl/ CGI 07-09-2002, 10:24 PM
Replies: 3
Views: 1,862
Posted By amy2go
Oh, and I use Perl for server-side scripting -...

Oh, and I use Perl for server-side scripting - which is why I'm in this forum.
Forum: Perl/ CGI 07-09-2002, 10:22 PM
Replies: 3
Views: 1,862
Posted By amy2go
Email

The following is a test page that I'm trying to get to work - figure if I can get this to work, then I can apply it to the real stuff. This may be copied, saved, and run as is:

<html>
<head>...
Forum: Other server side languages/ issues 07-09-2002, 03:35 PM
Replies: 0
Views: 5,353
Posted By amy2go
HTML table and Excel

I have a web page that has an HTML table. The data the HTML table contains is dynamic, in that the user may enter a date or date range, and subsequently the table is generated. In addition, the user...
Forum: Other server side languages/ issues 06-21-2002, 05:20 PM
Replies: 3
Views: 11,210
Posted By amy2go
Aaagggggghhhh! Of all things. It likes two single...

Aaagggggghhhh! Of all things. It likes two single quotes, but not one single quote. And why is it that none of my million of computer books talk about this - even the one dedicated just to SQL? Oh,...
Forum: Other server side languages/ issues 06-20-2002, 08:44 PM
Replies: 3
Views: 11,210
Posted By amy2go
Unhappy Help with SQL insert statement

My problem is with a single quotation mark, or apostrophe, and sql to update a database.

These are the results if a single quote (apostrophe) is used in a field, in this case, O'Hare (oh, and by...
Forum: Perl/ CGI 06-20-2002, 03:48 PM
Replies: 12
Views: 2,852
Posted By amy2go
I'm still new to Perl, but I haven't read a file...

I'm still new to Perl, but I haven't read a file the way that you have this set up, not to say that it can't be done that way. Here is how I have read a file in one of my Perl scripts - and maybe you...
Forum: Perl/ CGI 06-19-2002, 11:46 PM
Replies: 12
Views: 2,852
Posted By amy2go
Decided to give this one a whirl. Your code:...

Decided to give this one a whirl.

Your code:

if ($line =~ /\<li([^]+)([^]+)/) {

should be:

if ($line =~ m/\<li([^]+)([^]+)/) {
Forum: JavaScript programming 06-18-2002, 01:28 PM
Replies: 11
Views: 2,105
Posted By amy2go
Okay, so maybe I need to spend a little more time...

Okay, so maybe I need to spend a little more time than a couple of months learning Javascript, Perl, and all this web programming before trying to help out. Hey it may be long but it worked!

-Amy
Forum: JavaScript programming 06-17-2002, 08:22 PM
Replies: 11
Views: 2,105
Posted By amy2go
function fnTest(){ var longMachine = new...

function fnTest(){
var longMachine = new Array;
longMachine[0] = fname.mname.value;
var shortMachine = "";
for(i=1; i<5; i++){
shortMachine += longMachine[0].charAt(i);
}
...
Showing results 1 to 23 of 23

 
Forum Jump

All times are GMT +1. The time now is 01:50 AM.