473,327 Members | 1,936 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,327 software developers and data experts.

form data will not post

can anyone be so kind as to look at

http://www.mysolution.ws/HYPOCRITE.php

and let me know why it isn't passing the form data to

http://www.mysolution.ws/insertHYPOCRITES.php

for the most part, the scripts were created with
http://phpcodegenie.sourceforge.net/

Thanks

I am also going to be looking for a script to display my database, if you
have any suggestions, I would appreciate it, right now, I am working with
MySQLDataViewer, I don't really need to display any
images/sound/video/files, I just wnat to display links to them

Jul 16 '05 #1
4 4394
In article <2f******************************@dizum.com>,
Nomen Nescio <no****@dizum.com> wrote:
can anyone be so kind as to look at

http://www.mysolution.ws/HYPOCRITE.php

and let me know why it isn't passing the form data to

http://www.mysolution.ws/insertHYPOCRITES.php


Because the HTML form action is set to
http://www.mysolution.ws/cgi-bin/insertHYPOCRITES.php, in the cgi-bin
directory.

hth

[alt.php.sql trimmed from crosspost]

--
Bulworth : fu***@fung.arg | My email address is ROT13 encoded, decode to mail
--------------------------|--------------------------------------------------
<http://www.phplabs.com/> | PHP scripts and thousands of webmaster resources!
Jul 16 '05 #2
On Wed, 13 Aug 2003 08:27:25 +0000, Senator Jay Billington Bulworth wrote:
Because the HTML form action is set to
http://www.mysolution.ws/cgi-bin/insertHYPOCRITES.php, in the cgi-bin
directory.


I have tried switching, to no avail, it is switched now, give it a try
THANK YOU VERY MUCH FOR YOUR REPLY

--
Comrade

seems like dizum is blocking
flonk, nose, romath, maybe a.u.k

not that I am pursuing trolling

I do think UPA has a VERY valid place on usenet

but, these are hotbeds for progressive thought and the doors must be open
to reach them

such blockage, is not in dizum's remailer-conf

I do not suspect mail2news, since I use redundancy

and mix.cfg set properly
short chain
VERY liberal use of mixmaster copies feature

as Mike Shinn recently wrote,
whether you believe in a remop's decision to filter,
all filtering should be announced in remailer-conf

or such filtration, needs to be questioned

and dizum is a large contributor

Alex, what is going on here? Thank you

find the cost of freedom, buried in the ground
pay the cost of freedom, lay your body down
http://www.mysolution.ws/rave.htm

http://www.mysolution.ws/ep.htm
(freezone scientology "tech" play page, adult oriented)

http://www.mysolution.ws/HARVEST.htm

"thrust in your sickles, for the fruit of the earth is ripe"
"you reap what you sow"
"follow me, and I will make you, fishers of men" - JESUS

"tech" ain't no joke

Daylight again, following me to bed
I think about a hundred years ago, how my fathers bled
I think I see a valley, covered with bones in blue
All the brave soldiers that cannot get older been askin' after you
Hear the past a callin', from Ar- -megeddon's side
When everyone's talkin' and noone is listenin', how can we decide?

(Do we) find the cost of freedom, buried in the ground

Mother earth will swallow you, lay your body down
Find the cost of freedom, buried in the ground
Mother earth will swallow you, lay your body down
(Find the cost of freedom buried in the ground)

cost of freedom lyrics by crosby, still, nash & young

a TOTAL INFORMATION AWARENESS SYSTEM FOR US!!!!!!!!

http://www.mysolution.ws/HYPOCRITE.php

is a STRAWMAN of where I think we need to go, to effect
a shuffling of social pecking orders in the direction
of justice/LEFT/liberal

it is a database, where you can enter a hypocrites name
and what he has partaken in, in the liberal culture
- porn, sextoys, escort service, drugs, adult personals ads,
swinging, corporate and government corruption

I HOPE TO HAVE THESE THINGS ADDRESSED
- form data passing variables resolved
- query and display of database
SOON

and details, including sound/picture evidence, to
be stored , a mySQL database (www.mysql.com)

THIS SYSTEM CREATED WITH

ALL FREE GNU PUBLIC LICENCE SOFTWARE
ALL OPEN SOURCE SOFTWARE
most of which hosted on sourceforge.net

1) mozilla graphic HTML design - composer
http://www.mozilla.org
2) gedit, text editor
http://gedit.sourceforge.net
3) mySQL database
http://www.mysql.com
4) mySQL control center for database creation
http://www.mysql.com/products/mysqlcc/index.html
5) phpCodeGenie , for mySQL related php scripts and forms
http://phpcodegenie.sourceforge.net
6) gFTP for file transfer to website
http://gftp.seul.org
7) work done on REDHAT Linux 9
http://www.redhat.com

Jul 16 '05 #3
source code would be nice to see why it dus not work, AND if u wne
sumbit a sorm u need a submit button not a link
On Wed, 13 Aug 2003 08:30:18 +0200 (CEST), Nomen Nescio
<no****@dizum.com> wrote:
can anyone be so kind as to look at

http://www.mysolution.ws/HYPOCRITE.php

and let me know why it isn't passing the form data to

http://www.mysolution.ws/insertHYPOCRITES.php

for the most part, the scripts were created with
http://phpcodegenie.sourceforge.net/

Thanks

I am also going to be looking for a script to display my database, if you
have any suggestions, I would appreciate it, right now, I am working with
MySQLDataViewer, I don't really need to display any
images/sound/video/files, I just wnat to display links to them


Jul 16 '05 #4
On Wed, 13 Aug 2003 12:22:52 +0200, Warstar wrote:
source code would be nice to see why it dus not work, AND if u wne
sumbit a sorm u need a submit button not a link


the little monkey with monkey wrench image, is a submit, there is no problem submitting, the php in the ACTION command of the form is run, with no error, BUT, the variables are not passed

here is the code for http://www.mysolution.ws/HYPOCRITE.php
and the code for insertHYPOCRITES.php, the URL in the ACTION command, follows
THANKS A LOT

<?
$Ip = "$REMOTE_ADDR";
?>
<html>
<head>
<meta http-equiv="content-type"
content="text/html; charset=ISO-8859-1">
<title>HYPOCRITE HARVEST DATABASE</title>
</head>
<body>
<?php
$Datetime = getdate();
$wkday = $Datetime['weekday'];
$month = $Datetime['month'];
$mday = $Datetime['mday'];
$year = $Datetime['year'];
$hour = $Datetime['hours'];
$min = $Datetime['minutes'];
$sec = $Datetime['seconds'];
echo "$wkday, $month $mday, $year, $hour, $min, $sec";
?>
<p>your IP is, </p>
<?
{
echo ($Ip);
}
?>
<big style="font-weight: bold;">&nbsp;<small>NOTE: realistically, all
IP addresses are tracked, and not just by me, so, if you are concerned,
use a proxy, such as <a href="http://www.anonymizer.com">www.anonymizer.com</a>,
or go to a public internet cafe or library, or corporate/school public
computer room, you can also send me anonymous email, using <a
href="http://mixmaster.sourceforge.net">mixmaster</a> , to <a
href="mailto:we*******@mysolution.ws">we*******@my solution.ws</a> , and
I will enter the data for you)<big><big><br>
</big></big></small></big>
<h1>DATABASE OF HYPOCRITES TO HARVEST (not yet functional, but get the look and feel, and check back every once in awhile</h1>
<h3>a&nbsp;total information awareness program, for liberal and LEFT</h3>
HARVEST = EXPOSE, and remove from social pecking orders, get our people
into pecking orders, effecting new social orders<br>
NEVER BY BLACKMAIL, just exposure<br>
GETTING AT THE HYPOCRITES, through them, or shuffling by next
generation via their spoiled children<br>
these records, will go into a DATABASE, which can be searched and
queried, <a href="http://www.mysolution.ws/search.php">BY KEYWORD HERE</a>.<br>
<br>
<big><span style="color: rgb(255, 0, 0);"> The REAPER IS RED - all
sickle (political) - COMMUNAL, COMMUNISM</span><br>
The REAPER IS BLACK - hammer (violence)<br>
<span
style="background-color: rgb(51, 0, 51); color: rgb(255, 255, 255);">
The REAPER IS WHITE - we are over the top, and success in inevitable</span><br>
<span style="color: rgb(0, 153, 0);"> The REAPER IS GREEN - someone
trying to strike a deal<br>
<span style="color: rgb(51, 51, 255);">THE REAPER IS BLUE - we got
police and military on our side, and WHITE is nearby</span></span></big><br>
<span style="color: rgb(51, 0, 51);">Harvesting tips, can be found <a
href="http://www.mysolution.ws/HARVEST.htm">HERE</a>.</span></big></big></big></big><br>
see also, Joe's freezone Scientology "tech" page, <a
href="http://www.mysolution.ws/ep.htm">HERE</a>, includes some sexual
content, enter at your own knowledge of such.<br>
<br>
AND, Joe's main LEFTIST FRONT, and platform <a
href="http://www.mysolution.ws">site</a>, with all stakes and planks,
laid out, in a VEHICLE.<br>
</span></big>&nbsp;<br>
<br>
<big style="font-weight: bold;"><big><big><big>Enter a New HYPOCRITE, REQUIRED FIELDS are marked with an * </big></big></big>, </big>
<?
include("datacon.php");
?>

<h2>What is transgression against? SELECT AT LEAST ONE OF THESE CATEGORIES, keep the Ctrl key held down, to select multiple categories</h2>
<form name=formMaker method=post action="http://www.mysolution.ws/insertHYPOCRITES.php">
<table>

<tr height=30 valign=top>
<td align=right><b>*Category :</b></td>
<td>
<select name="CategoryField" size="27" multiple>
<option value="1">corrupt dealing in corporate patents</option>
<option value="2">corrupt dealing in corporate copyrights</option>
<option value="3">corrupt dealing in technical architecture, other
intellectual property</option>
<option value="4">corrupt dealing in corporate capital</option>
<option value="5">embezellment of actual corporate liquid money</option>
<option value="6">corrupt dealing in jobs or career advancements</option>
<option value="7">perpetuating do-nothing, soap opera, corporate fat</option>
<option value="8">PRICE GOUGING</option>
<option value="9">purchasing or downloading porn or sextoys online,
then being a hypocrite in social life</option>
<option value="10">purchasing porn or sextoys in physical places,
then being a hypocrite in social life</option>
<option value="11">escort service customer, then hypocrite in social
life</option>
<option value="12">sexwork customer, then hypocrite in social life</option>
<option value="13">homosexual, bisexual, CD, TV, then hypocrite in
social life</option>
<option value="14">B&amp;D, S&amp;M, Femdom, etc., then hypocrite in
social life</option>
<option value="15">Swinging, with or without adult personals ad, then
hypocrite in social life</option>
<option value="16">Public Nudity, then hypocrite in social life</option>
<option value="17">Recreational or Shamanistic substance use,
including alchohol, then hypocrite in social life</option>
<option value="18">Non-Missionary position sex, etc., then hypocrite
in social life</option>
<option value="19">Liberal culture movie, music, purchase, concerts,
bars or pubs, dance, rave, clubs, etc., then hypocrite in social life</option>
<option value="20">Liberal culture strip clubs, then hypocrite in
social life</option>
<option value="21">Corporate ENVIRONMENTAL ABUSE</option>
<option value="22">Attack on CONSUMER, or CONSUMER UNION</option>
<option value="23">Attack on LABOR, or LABOR UNION</option>
<option value="24">Attack on LIBERTARIAN UNION</option>
<option value="25">Government CORRUPTION, opportunity brokerage,
psy-ops, overthrow of democratic governments</option>
<option value="26">Assault, including sexual, or psychological
(harassment,libel,defamation) or vandalism, or MURDER</option>
<option value="27">Theft, including fraud and blackmail)</option>
</select>
</td>
</tr>

<tr height=30 valign=top>
<td align=right><b>*Enter HYPOCRITE FIRST NAME :</b></td>
<td>
<input type="text" name="FNameField" MAXLENGTH=25>
</td>
</tr>
<tr height=30 valign=top>
<td align=right><b>*Enter HYPOCRITE LAST NAME :</b></td>
<td>
<input type="text" name="LNameField" MAXLENGTH=25>
</td>
</tr>
<tr height=30 valign=top>
<td align=right><b>*Enter HYPOCRITE Nation :</b></td>
<td>
<input type="text" name="NationField" MAXLENGTH=25>
</td>
</tr>
<tr height=30 valign=top>
<td align=right><b>Enter HYPOCRITE State/Territory :</b></td>
<td>
<input type="text" name="StateField" MAXLENGTH=25>
</td>
</tr>
<tr height=30 valign=top>
<td align=right><b>Enter HYPOCRITE County/Province :</b></td>
<td>
<input type="text" name="CountyField" MAXLENGTH=25>
</td>
</tr>
<tr height=30 valign=top>
<td align=right><b>Enter HYPOCRITE City/Town/Village/Borough :</b></td>
<td>
<input type="text" name="CityField" MAXLENGTH=25>
</td>
</tr>
<tr height=30 valign=top>
<td align=right><b>Enter HYPOCRITE's Church :</b></td>
<td>
<input type="text" name="ChurchField" MAXLENGTH=25>
</td>
</tr>
<tr height=30 valign=top>
<td align=right><b>Enter HYPOCRITE's Employer :</b></td>
<td>
<input type="text" name="EmployerField" MAXLENGTH=25>
</td>
</tr>
<tr height=30 valign=top>
<td align=right><b>Enter HYPOCRITE's Street Name:</b></td>
<td>
<input type="text" name="StreetField" MAXLENGTH=25>
</td>
</tr>
<tr height=30 valign=top>
<td align=right><b>Enter HYPOCRITE's Street Number :</b></td>
<td>
<input type="text" name="StreetNumberField">
</td>
</tr>
<tr height=30 valign=top>
<td align=right><b>Enter HYPOCRITE's Mother's Maiden Name:</b></td>
<td>
<input type="text" name="MaidenField" MAXLENGTH=25>
</td>
</tr>
<tr height=30 valign=top>
<td align=right><b>*ENTER A Description of the Transgression :</b></td>
<td>
<textarea name="DescriptField" wrap="VIRTUAL" cols="64" rows="10" MAXLENGTH=255></textarea>
</td>
</tr>

<tr height=30 valign=top>
<td align=right><b>Upload Text file of EVIDENCE :</b></td>
<td>
<input type="file" name="TextfileField" MAXLENGTH=128>
</td>
</tr>
<tr height=30 valign=top>
<td align=right><b>Upload an Audio file of EVIDENCE :</b></td>
<td>
<input type="file" name="AudioField" MAXLENGTH=128>
</td>
</tr>
<tr height=30 valign=top>
<td align=right><b>Upload an Image File of EVIDENCE, including a scanned document :</b></td>
<td>
<input type="file" name="ImageField" MAXLENGTH=128>
</td>
</tr>
<tr height=30 valign=top>
<td align=right><b>Upload a Video File of EVIDENCE :</b></td>
<td>
<input type="file" name="VideoField" MAXLENGTH=128>
</td>
</tr>

</table>
<br>
<br>

ALL FILES, filename less than 128 chars, filesize less than 50K, more than one filetype, then submit the form, and come back and fill in the form again
<br>
<br>

<p style="font-weight: bold;"><big><big><big><big><big><big><span
style="background-color: rgb(255, 255, 0);"> WHEN YOU ARE DONE, CLICK
ON THE MONKEY BELOW TO SUBMIT</span> </big></big></big></big></big></big></p>
<p style="text-align: center;"> <input type="image" alt="The Monkey"
src="http://www.mysolution.ws/images/smallmonkey.gif"> </p>
<br>
<big style="font-weight: bold;"><big><big><big><big><big><span
style="background-color: rgb(255, 255, 0);">CLICK ON THE MONKEY ABOVE
TO SUBMIT<br>
<br>
<input type=reset name=Submit2 value="Reset and Start Again">
<br>
</form>



<p style="font-weight: bold;"><big><big> <big> call this the Jesus-Sickle type revolution, as opposed to the
Thor-Hammer type (Nationalists Socialists German Workers' Party), and my
feeling is that HAMMER is only valid for defense, and a real revolution
cannot be brokered by violence, because the moment you have a credible
military threat, you have a credible political one. Violence, scares
sheeple away from our movement to form such political threat. AND, those
who suggest violence, are trying to use us, as fodder, such as to broker
their own power, by antagonizing, until a deal is struck. We are
interested in NO DEALS. We are interested in the FINAL PICTURE. And
while some mya pursue HAMMER and DEAL, along the way, OUR MOVEMENT of
POLITICAL POWER MUST continue, in the midst of all that happens.<br>
<br>
Goal: socialism and communism, not by giving government control, but by
2nd generation ideas that regulate privatization, such that the
material, is subject to the social, NO POSSIBLE CAPITALIZING ON ANYONE,
no possible capitalism, and socialism is achieved, <a
href="http://www.mysolution.ws/industry.htm">http://www.mysolution.ws/industry.htm</a>
Subjecting GOVERNMENT AND LAW, to the social also, by legislative
reform, minimal law, and removal of laws dealing with victimless
crimes,&nbsp; <a href="http://www.mysolution.ws/legislate.htm">http://www.mysolution.ws/legislate.htm</a>
, such that socialism in that aspect is achieved, COMMUNAL THOUGHT,
communism. The MEEK SHALL INHERIT THE EARTH, by holding the RED STAR
high.<br>
</big><br>
<div class="SearchResults"><big><big><a
href="http://biblegateway.com/cgi-bin/bible?passage=PS+37:11&amp;language=english&amp;ve rsion=KJV&amp;showfn=on&amp;showxref=on"><span
class="NavigationLinks">Psalm 37:11</span></a><br>
But the <b>meek</b> shall <b>inherit</b> the earth; and shall delight
themselves in the abundance of peace. <br>
<br>
</big></big></div>
<big><big><a
href="http://biblegateway.com/cgi-bin/bible?passage=MATT+5:5&amp;language=english&amp;ve rsion=KJV&amp;showfn=on&amp;showxref=on"><span
class="NavigationLinks">Matthew 5:5</span></a><br>
Blessed are the <b>meek</b>: for they shall <b>inherit</b> the earth. </big></big><br>
<big> <br>
<span style="color: rgb(255, 0, 0);"> The REAPER IS RED - all sickle
(political) - COMMUNAL, COMMUNISM</span><br>
The REAPER IS BLACK - hammer (violence)<br>
<span
style="background-color: rgb(51, 0, 51); color: rgb(255, 255, 255);">
The REAPER IS WHITE - we are over the top, and success in inevitable</span><br>
<span style="color: rgb(0, 153, 0);"> The REAPER IS GREEN - someone
trying to strike a deal<br>
<span style="color: rgb(51, 51, 255);">THE REAPER IS BLUE - we got
police and military on our side, and WHITE is nearby</span><br>
<big><big><big><big><br>
<span style="color: rgb(51, 0, 51);">Harvesting tips, can be found <a
href="http://www.mysolution.ws/HARVEST.htm">HERE</a>.</span></big></big></big></big><br>
see also, Joe's freezone Scientology "tech" page, <a
href="http://www.mysolution.ws/ep.htm">HERE</a>, includes some sexual
content, enter at your own knowledge of such.<br>
<br>
AND, Joe's main LEFTIST FRONT, and platform <a
href="http://www.mysolution.ws">site</a>, with all stakes and planks,
laid out, in a VEHICLE.<br>
</span></big>&nbsp;<br>

<br>
THIS SYSTEM CREATED WITH<br>
<br>
ALL FREE <a href="http://www.gnu.org">GNU PUBLIC LICENCE</a> SOFTWARE<br>
ALL <a href="http://www.opensource.org">OPEN SOURCE</a> SOFTWARE<br>
most of which hosted on <a href="http://www.sourceforge.net">sourceforge.net</a><br>
<br>
1) <a href="http://www.mozilla.org">mozilla</a> graphic HTML design -
composer<br>
2) <a href="http://gedit.sourceforge.net">gedit</a>, text editor<br>
3) <a href="http://www.mysql.com">mySQL</a> database<br>
4) mySQL <a href="http://www.mysql.com/products/mysqlcc/index.html">control
center</a> for database creation<br>
5) <a href="http://phpcodegenie.sourceforge.net">phpCodeGenie</a> , for
mySQL related php scripts and forms<br>
6) <a href="http://gftp.seul.org">gFTP</a> for file transfer to website<br>
7) work done on <a href="http://www.redhat.com">REDHAT Linux 9</a><br>
</body>
</html>

the code for insertHYPOCRITES.php

<?
include("datacon.php");

$FName = $_POST['FName'];
$LName = $_POST['LName'];
$Nation = $_POST['Nation'];
$State = $_POST['State'];
$County = $_POST['County'];
$City = $_POST['City'];
$Church = $_POST['Church'];
$Employer = $_POST['Employer'];
$Street = $_POST['Street'];
$StreetNumber = $_POST['StreetNumber'];
$Maiden = $_POST['Maiden'];
$Descript = $_POST['Descript'];
$Textfile = $_POST['Textfile'];
$Audio = $_POST['Audio'];
$Image = $_POST['Image'];
$Video = $_POST['Video'];
$Category = $_POST['Category'];
$datetime = $_POST['datetime'];
$ip = $_POST['ip'];
echo "Hello World";

echo "This spans
multiple lines. The newlines will be
output as well";

echo "This spans\nmultiple lines. The newlines will be\noutput as well.";

echo "Escaping characters is done \"Like this\".";

//You can use variables inside of an echo statement
$foo = "FName";
$bar = "$FName";

$query="update HYPOCRITES set FName='$FName', LName='$LName', Nation='$Nation', State='$State', County='$County', City='$City', Church='$Church', Employer='$Employer', Street='$Street', StreetNumber='$StreetNumber', Maiden='$Maiden', Descript='$Descript', Textfile='$Textfile', Audio='$Audio', Image='$Image', Video='$Video', Category='$Category', datetime='$datetime', ip='$ip' where FName = '$FName'";

$result = MYSQL_QUERY($query);
?>

<html>
<body>

<H2>HYPOCRITES Updated !!</H2>

<table>
<tr height=30>
<td align=right><b>FName :</b></td>
<td><font color=blue><b><? echo $FName; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>LName :</b></td>
<td><font color=blue><b><? echo $LName; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>Nation :</b></td>
<td><font color=blue><b><? echo $Nation; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>State :</b></td>
<td><font color=blue><b><? echo $State; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>County :</b></td>
<td><font color=blue><b><? echo $County; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>City :</b></td>
<td><font color=blue><b><? echo $City; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>Church :</b></td>
<td><font color=blue><b><? echo $Church; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>Employer :</b></td>
<td><font color=blue><b><? echo $Employer; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>Street :</b></td>
<td><font color=blue><b><? echo $Street; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>StreetNumber :</b></td>
<td><font color=blue><b><? echo $StreetNumber; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>Maiden :</b></td>
<td><font color=blue><b><? echo $Maiden; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>Descript :</b></td>
<td><font color=blue><b><? echo $Descript; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>Textfile :</b></td>
<td><font color=blue><b><? echo $Textfile; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>Audio :</b></td>
<td><font color=blue><b><? echo $Audio; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>Image :</b></td>
<td><font color=blue><b><? echo $Image; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>Video :</b></td>
<td><font color=blue><b><? echo $Video; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>Category :</b></td>
<td><font color=blue><b><? echo $Category; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>Datetime :</b></td>
<td><font color=blue><b><? echo $datetime; ?></font></b></td>
</tr>
<tr height=30>
<td align=right><b>Ip :</b></td>
<td><font color=blue><b><? echo $ip; ?></font></b></td>
</tr>
</table><br><br>
Click <a href="HYPOCRITE.php">here</a> to go back
<br>
THIS SYSTEM CREATED WITH<br>
<br>
ALL FREE <a href="http://www.gnu.org">GNU PUBLIC LICENCE</a> SOFTWARE<br>
ALL <a href="http://www.opensource.org">OPEN SOURCE</a> SOFTWARE<br>
most of which hosted on <a href="http://www.sourceforge.net">sourceforge.net</a><br>
<br>
1) <a href="http://www.mozilla.org">mozilla</a> graphic HTML design -
composer<br>
2) <a href="http://gedit.sourceforge.net">gedit</a>, text editor<br>
3) <a href="http://www.mysql.com">mySQL</a> database<br>
4) mySQL <a href="http://www.mysql.com/products/mysqlcc/index.html">control
center</a> for database creation<br>
5) <a href="http://phpcodegenie.sourceforge.net">phpCodeGenie</a> , for
mySQL related php scripts and forms<br>
6) <a href="http://gftp.seul.org">gFTP</a> for file transfer to website<br>
7) work done on <a href="http://www.redhat.com">REDHAT Linux 9</a><br>

</body>
</html>

--
Comrade

Jul 16 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Steve | last post by:
I'm working in PHP, but am also using JavaScript, so perhaps there is a better way to do this using more PHP code...... I setup a search screen for my database, the user enters data and submits...
10
by: Noozer | last post by:
Below is some ASP, HTML and javascript. It is part of a page used to maintain a small database. This code did work at one time, but has since stopped. For some reason the data on my form is not...
2
by: JHB | last post by:
Hi, How can I do a location.replace when I use a form, like when I use a href? This works. <a href="Ny HTML-side20.htm"; method="post" id="frm" name="BrugerHovedSide"...
2
by: jponiato | last post by:
Greetings. An HTML form submits it's data to a python cgi script on my server. This script accepts this POST data, and uses urllib.urlopen() to call a different cgi script (on an external server),...
4
by: Alex Sibilev | last post by:
Hello, I have a really weird problem I've been trying to solve it without any luck for the last couple of hours :( I'm writing a "conference board" application (quite similar to ASP.NET...
9
by: eswanson | last post by:
I have a web page I need to post a file plus some other fields to it. How can I do this from a asp.net page. I know I can send individual fields to the other page, but how do I send a file to the...
13
by: deko | last post by:
I have a basic feedback form with a submit button. After the "send" button is clicked, I want the user to be redirected to a different page that says "Your message has been sent." How do I do...
0
by: bp_jobemail | last post by:
I'm trying to use PHP to wrap the output of an HTML form before it goes into a precompiled C cgi script. Essentially, the company that I work for uses a purchased precompiled c program for their...
15
by: Kevin Davis | last post by:
Hello, I'm a new person when it comes to PHP and I have a quick question. I would like to create a form that will allow the user to add more information using the same form in case they have...
1
by: starter08 | last post by:
Hi, I have a C++ routine(client-side) which uploads an xml file to a web server by making a socket connection and sending all the post request through that socket. On the server side I have a cgi...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.