Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
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
Changing directories
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
New to the CGI/Perl world
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
Cgi + Html = ???
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
Changing directories
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
Email a Web Page
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
Aligning a table within a div
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
Aligning a table within a div
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
Best way to change [b]...[/b] to <b>...</b>
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
Best way to change [b]...[/b] to <b>...</b>
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
Best way to change [b]...[/b] to <b>...</b>
Views:
1,920
Posted By
amy2go
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
Best way to change [b]...[/b] to <b>...</b>
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
Best way to change [b]...[/b] to <b>...</b>
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
Best way to change [b]...[/b] to <b>...</b>
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
Email
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
Email
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
Email
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
HTML table and Excel
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
Help with SQL insert statement
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
Help with SQL insert statement
Views:
11,210
Posted By
amy2go
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
what's the difference?
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
what's the difference?
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
Passing a piece of text.........
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
Passing a piece of text.........
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
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
01:50 AM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.