I have been trying to adapt the photo carousel script located at --
http://www.dynamicdrive.com/dynamicindex14/carousel.htm
to open a new page in another frame located directly below the clickable
carousel frame photos. I know that the basic script to do this is as in --
<a href="http://www.example.org/" target="bottom" >Click</a>
but I cannot figure...
User Profile
Collapse
Profile Sidebar
Collapse
jrsjrs
Last Activity: Oct 12 '09, 01:04 PM
Joined: Sep 14 '06
Location:
-
Click Photo Carousel into new frame
-
Thank you micmast!
I think I will try to interface it with PHP
since that is already in the code.
In checking around after your reply
I even found PHP-GnuPlot.zip to work with.
Thanks again. You saved me a lot of time.
All you guys on this and the other forums are just great! -
Gnuplot to HTML/Website Interface
Is there any way to program Gnuplot into a webpage?
It would be great to simply press a link button in a
webpage and have a preprogrammed graph pop up.
It would be even better to be able to type in an equation
on the webpage and have its graph appear.
Is this simply impossible because there is
just no way to connect html and linux? -
How to Resize an Applet?
Some Java Applets have a very small output on the screen.
There are many ways to enlarge text and images on a webpage,
but none of these methods affect a java applet size.
Is there any way to resize an applet on a webpage for easier viewing?
Most text/image resize programs are written in Javascript.
I have searched everywhere without success.
Is this simply impossible to do? -
Thanks Snake and prn.
I have downloaded Ubuntu and firestarter.
I think I can do it, but it will take a little time.Leave a comment:
-
Whitelist Internet Filter
I want to put a dedicated Internet-filtering laptop computer
between my modem and router.
I need software to implement a Whitelist instead of a Blacklist, since
a Blacklist with keyword-blocking is much too easy to get through.
I wish to block out ALL websites, except those on a preapproved Whitelist.
Can anyone help me develop such a system?
Suitable software? Programming websites?
My... -
Very Sorry.
It was thoughtless of me to post that website address,
but I thought that it would be the easiest and quickest way
for everyone to see what I was wanting to program.
I was not promoting the contents of the website,
I was merely pointing to a programming example that
I have only found on that one website and no other.
Having explained that, I hope there is enough description in...Leave a comment:
-
Chat online with a two-way interactive sketching whiteboard
I have been trying to find the software that would enable me to not only type in my chatting from the keyboard, but also allow me to draw in technical sketches with my mouse or a stylus at the same time.
The website that best demonstrates this technique is at -
deleted
Click on the "Take a tour" link to see the demo of this interactive learning feature that they use.
The features of the above... -
Thanks Improvcornartis t !
You were right. I needed a number zero instead of a letter O.
After working with it for awhile I found that %0D%0A worked best.
Thanks again....Leave a comment:
-
Mailto lacks Newline in Message
What should I do to get my 3 messages - content1, content2, content3 -
to print on three separate lines in the body of the email?
In other words, what do I use to get a newline between these lines?
Neither <BR> nor %OA nor \n appear to work. Why not?
Any suggestions, or is this simply impossible?
<script language="JavaS cript">
var address = new Array()
var name = new... -
This sounds exactly like what I asked on 28 May 2007
entitled php include() inside mail() .
Have a look and tell me if it is.
Apparently this is impossible to do.!?Leave a comment:
-
Thank you Bergy!
I tried using file_get_conten ts(), with the txt, html and php extensions,
but this only gets the text of the program source codes, and does
not execute or run the program first, and then output the results.
For example, Save these 3 lines as "date.php".
<html><head></head><body>
<?php print date("Y-m-d"); ?>
</body></html>...Leave a comment:
-
php include() inside mail()
[code=php]<?php
$to = "someone2@examp le.com";
$subject = "Test mail";
$message = include("PROGRA MtoEXECUTE.html ");
$from = "someone1@examp le.com";
$headers = "From: $from";
mail($to,$subje ct,$message,$he aders);
echo "Mail Sent.";
?>[/code]
[Please use CODE tags when posting source code. Thanks! --pbmods]
... -
Thanks Motoma.
I am finding that these ob commands are really temperamental.
However my scripts work ok most of the time.
So I am now trying to do the same in javascript using setTimeout().
But this has some quirks of its own too!
Wish me happy slogging. Thanks again.Leave a comment:
-
sleep() output
<?php
echo "<BR><BR>A) Present time is:<BR>";
echo date('h:i:s') . "\n<BR>Dela ying 5 seconds, new time is:<BR>";
sleep(5);
echo date('h:i:s') . "\n<BR>";
?>
This first script delays 5 seconds then prints everything.
How can we make it immediately print the present time,
tell us that there is a delay,and then print... -
Input Tablet to Webpage Chatroom
I have been looking for a solution to this problem for a long time.
Any guidance from anyone would be much appreciated.
I have a website with a chatroom. I wish to add "tablet and stylus" input to this chatroom because most of the questions need technical-type diagrams to answer them properly.
In other words, I would like to answer the questions by writing them onto an input tablet of some kind with... -
Mysql Data into Email Message
<?
$link = mysql_connect(" server", "database", "password") or die("Could not connect : " . mysql_error());
$DB = "database";
$table = "users";
mysql_select_db ($DB) or die ("Database $DB not select.." . mysql_error());
$result = mysql_query("SE LECT * FROM users") or die(mysql_error ());
$row = mysql_fetch_arr ay(... -
Multiple Fonts in Email Message?
Can a single email message contain more than one font?
Even a Microsoft Word doc with italics and bold cannot be sent properly.
It all ends up as a single same dull font.
Special html characters also become garbage.
My objective is to send a mailable letter, typed in MS Word, via email and have it appear exactly the same at the recipient's computer and printer, as though he had received it in a snail-mail envelope.... -
Thanks ronverdonk.
That solved the problem. I had a mental block on that one!
Is there a website that has other tags that will be
deprecated in php 6 ? So I don't waste any
more time writing code with old tags.Leave a comment:
-
Pass same info to successive pages
PAGE 1 - saved as yyyIntro.php is between the rows of periods.
..............
The secret word is HAPPY.
<TABLE>
<A href=yyyConfirm .php?i=HAPPY>Se nd the secret word to page 2.</A>
</TABLE>
..............
PAGE 2 - saved as yyyConfirm.php
............... ...
<?
$i=$HTTP_GET_VA RS["i"];
print "<BR>Word passed was - $i";
...
No activity results to display
Show More
Leave a comment: