/    Sign up×
Community /Pin to ProfileBookmark

passing input type =text name= email to pop-up form

Hi can anyone help me with passing values from one form to a pop-up
form and in doing so how can you add more than one onclick to one button.

Here is the code

<SCRIPT LANGUAGE=”JavaScript”>
<!– Original: Eric King ([email protected]) –>
<!– Web Site: [url]http://redrival.com/eak/[/url] –>

<!– This script and many more are available free online at –>
<!– The JavaScript Source!! [url]http://javascript.internet.com[/url] –>

<!– Begin
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width – w) / 2;
var wint = (screen.height – h) / 2;
winprops = ‘height=’+h+’,width=’+w+’,top=’+wint+’,left=’+winl+’,resizable’
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
// End –>
</script>

<DIV style=”Z-INDEX: 8; WIDTH: 150px; POSITION: absolute; TOP: 1005px; HEIGHT: 10px; LEFT: 10px”><font face=”verdana” font size=”1″><b>Add Picture:</b>

<INPUT TYPE=”button” VALUE=”Click to send Image”
<a href=”http://www.psra.com.au/nrdata/picture.htm” onClick=”NewWindow(this.href,’name’,’350′,’350′,’yes’);return false;” STYLE=”height:18px” STYLE=”font-size:8pt”></a></font> </div>

to post a comment
JavaScript

11 Comments(s)

Copy linkTweet thisAlerts:
@PittimannJul 14.2004 — Hi!

A couple of things to mention:

Your input tag is not closed,

your anchor tag does not have anything to click on,

instead of using the font tag, you could add the font stuff to the style attributes.

I am having the impression, that you want to allow users to upload an image (your incomplete button has VALUE="Click to send Image"). If that is the case you will have to use an input type=file being part of a form with method="POST" and enctype="multipart/form-data" in the form tag. I also think, that you want to display the image in the popup. That will be impossible using the code you provided.

As far as multiple function calls or stuff to happen onclick of something is concerned, just separate them with ";" - example:

onclick="function1();function2();"

Can you please describe, what you really want?

Cheers - Pit
Copy linkTweet thisAlerts:
@denauthorJul 14.2004 — sorry the image/file uploader works

it opens a pop-up with a input field from for them to type

there email address into and then browse there computer to upload a file.

The entire first form is to long to add so I have attached the file

here is the pop-up

<html>

<head>

<title>Send an Email</title>

</head>

<body bgcolor=#e8e8e8>

<DIV

style="Z-INDEX: 8; WIDTH: 200px; POSITION: absolute; TOP: 15px; HEIGHT: 12px; LEFT: 15px"><font face="verdana" color="#000000">

<h3>Register Image</h3></div>

<form action="picture.php" method="POST" enctype="multipart/form-data">

<DIV

style="Z-INDEX: 8; WIDTH: 100px; POSITION: absolute; TOP: 55px; HEIGHT: 12px; LEFT: 15px"><font face="verdana" size="1" color="#000000">

<input type="hidden" name="to" value="[email protected]" STYLE="height:18px" STYLE="font-size:8pt" size=45/><br /></div>

<DIV
style="Z-INDEX: 8; WIDTH: 100px; POSITION: absolute; TOP: 55px; HEIGHT: 12px; LEFT: 15px"><font face="verdana" size="1" color="#000000">

Email Address: <input type="text" name="from" value="" STYLE="height:18px" STYLE="font-size:8pt" size=45/><br /></div>

<DIV

style="Z-INDEX: 8; WIDTH: 100px; POSITION: absolute; TOP: 95px; HEIGHT: 12px; LEFT: 15px"><font face="verdana" size="1" color="#000000">

<p>Attachment: <input type="file" name="fileatt" STYLE="height:18px" STYLE="font-size:8pt" size=45/></p></div>

<DIV

style="Z-INDEX: 8; WIDTH: 315px; POSITION: absolute; TOP: 135px; HEIGHT: 10px; LEFT: 15px">

<hr size="2" width="100%">

</div>

<DIV
style="Z-INDEX: 8; WIDTH: 100px; POSITION: absolute; TOP: 160px; HEIGHT: 12px; LEFT: 15px"><font face="verdana" size="1" color="#000000">

<p><input type="submit" value="Send" STYLE="height:18px" STYLE="font-size:8pt"/></p></div>

</form>

</body>

</html>

the previous form remains active

would prefer that it was one form but haven't the brains to do it yet.

Any help would be greatly appreciated

[upl-file uuid=25c84141-808a-4c37-bf14-cd533ad26a80 size=38kB]form.txt[/upl-file]
Copy linkTweet thisAlerts:
@denauthorJul 14.2004 — sorry I have never posted so much code before

here are the php files

form.txt php code assigned as mailer.php

<?php

##################################################
#####

# This script is Copyright 2003, Infinity Web Design #


# Distributed by <a href="http://www.webdevfaqs.com" target="_blank">http://www.webdevfaqs.com</a> #


# Written by Ryan Brill - [email][email protected][/email] #


# All Rights Reserved - Do not remove this notice #


# Also thanks goes to Shimon and Shrine Designs #


##################################################
#####


// email to...

$first = "[email protected]";

$second = "[email protected]";

$subject = "PSRA web form."; // set the subject line

$from = $_POST['email'];

$forward = 1; // redirect? 1 : yes || 0 : no

$location = "http://www.psra.com.au/nrdata/thanks.htm"; // set page to redirect to, if 1 is above

// date and time

$date = date("l, F jS, Y");

$time = date("h:i A");

// mail the message

$message = "Below is the result of your feedback form. It was submitted on {$date} at {$time}.nnIP: {$_SERVER['REMOTE_ADDR']}nn";

$method = ($_
SERVER['REQUEST_METHOD'] == 'POST') ? $_POST : $_GET;

foreach($method as $key => $value)

{

$key = ucfirst($key);

$message .= "{$key}: {$value}n";

}

mail($first,$subject,$message,"From:$from");

if($second != NULL)

{

mail($second,$subject,$message,"From:$from");

}

if($forward == 1)

{

header("location :$location");

}

else

{

echo "Thank you for submitting our form. We will get back to you as soon as possible.";

}

?>

also pop-up picture.php

<?php

// Read POST request params into global vars

$to = $_POST['to'];

$from = $_
POST['from'];

$subject = $_POST['PSRA IMAGE'];

$message = $_
POST['HOPE'];

$forward = 1; // redirect? 1 : yes || 0 : no

$location = "http://www.psra.com.au/nrdata/picturethanks.htm"; // set page to redirect to, if 1 is above

// Obtain file upload vars

$fileatt = $_FILES['fileatt']['tmp_name'];

$fileatt_type = $_
FILES['fileatt']['type'];

$fileatt_name = $_FILES['fileatt']['name'];

$headers = "From: $from";

if (is_uploaded_file($fileatt)) {

// Read the file to be attached ('rb' = read binary)

$file = fopen($fileatt,'rb');

$data = fread($file,filesize($fileatt));

fclose($file);

// Generate a boundary string

$semi_rand = md5(time());

$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";

// Add the headers for a file attachment

$headers .= "nMIME-Version: 1.0n" .

"Content-Type: multipart/mixed;n" .

" boundary="{$mime_boundary}"";

// Add a multipart boundary above the plain message

$message = "This is a multi-part message in MIME format.nn" .

"--{$mime_boundary}n" .

"Content-Type: text/plain; charset="iso-8859-1"n" .

"Content-Transfer-Encoding: 7bitnn" .

$message . "nn";

// Base64 encode the file data

$data = chunk_split(base64_encode($data));

// Add file attachment to the message

$message .= "--{$mime_boundary}n" .

"Content-Type: {$fileatt_type};n" .

" name="{$fileatt_name}"n" .

//"Content-Disposition: attachment;n" .

//" filename="{$fileatt_name}"n" .

"Content-Transfer-Encoding: base64nn" .

$data . "nn" .

"--{$mime_boundary}--n";

}

// Send the message

if($forward == 1)

{

header("location :$location");

}

$ok = @mail($to, $subject, $message, $headers);

if ($ok) {

echo "<p>Your image has been sent!</p>";

} else {

echo "<p>Mail could not be sent. Sorry!</p>";

}

?>
Copy linkTweet thisAlerts:
@PittimannJul 14.2004 — Hi!

Also the part to open the popup in the file you attached can't work:

<INPUT TYPE="button" VALUE="Click to send Image">

<a href="http://www.psra.com.au/nrdata/picture.htm" onClick="NewWindow(this.href,'name','350','350','yes');return false;" STYLE="height:18px" STYLE="font-size:8pt">[COLOR=red]nothing here[/COLOR]</a>

The button does not have an onclick and the href [COLOR=red]nothing[/COLOR] to click.

Apart from that, you could do the thing in one form (without needing the popup at all), if you put the input type="file" in the main form instead of the useless button '<INPUT TYPE="button" VALUE="Click to send Image">'.

You would just have to use a PHP script, which combines the functionality of Pyro's mailer.php and the picture.php

So you could receive a single email with all the form data and (if the user selects one) the image as an attachment.

Cheers - Pit
Copy linkTweet thisAlerts:
@denauthorJul 14.2004 — I know its useless and I would prefer the inpute=file but do you think

I know how to combine the two together. No way I cut and paste

one php into the other and kept on getting line 88 end undefined

when I already had a ?> there

here is one of many combined versions

<?php

##################################################
#####

# This script is Copyright 2003, Infinity Web Design #


# Distributed by <a href="http://www.webdevfaqs.com" target="_blank">http://www.webdevfaqs.com</a> #


# Written by Ryan Brill - [email][email protected][/email] #


# All Rights Reserved - Do not remove this notice #


# Also thanks goes to Shimon and Shrine Designs #


##################################################
#####


// email to...

$first = "[email protected]";

$second = "[email protected]";

$subject = "PSRA web form."; // set the subject line

$from = $_POST['email'];

$forward = 1; // redirect? 1 : yes || 0 : no

$location = "http://www.psra.com.au/nrdata/thanks.htm"; // set page to redirect to, if 1 is above

// date and time

$date = date("l, F jS, Y");

$time = date("h:i A");

// mail the message

$message = "Below is the result of your feedback form. It was submitted on {$date} at {$time}.nnIP: {$_SERVER['REMOTE_ADDR']}nn";

$method = ($_
SERVER['REQUEST_METHOD'] == 'POST') ? $_POST : $_GET;

// Obtain file upload vars

$fileatt = $_FILES['fileatt']['tmp_name'];

$fileatt_type = $_
FILES['fileatt']['type'];

$fileatt_name = $_FILES['fileatt']['name'];

if (is_uploaded_file($fileatt)) {

// Read the file to be attached ('rb' = read binary)

$file = fopen($fileatt,'rb');

$data = fread($file,filesize($fileatt));

fclose($file);

// Generate a boundary string

$semi_rand = md5(time());

$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";

// Add the headers for a file attachment

$headers .= "nMIME-Version: 1.0n" .

"Content-Type: multipart/mixed;n" .

" boundary="{$mime_boundary}"";

// Add a multipart boundary above the plain message

$message = "This is a multi-part message in MIME format.nn" .

"--{$mime_boundary}n" .

"Content-Type: text/plain; charset="iso-8859-1"n" .

"Content-Transfer-Encoding: 7bitnn" .

$message . "nn";

// Base64 encode the file data

$data = chunk_split(base64_encode($data));

// Add file attachment to the message

$message .= "--{$mime_boundary}n" .

"Content-Type: {$fileatt_type};n" .

" name="{$fileatt_name}"n" .

//"Content-Disposition: attachment;n" .

//" filename="{$fileatt_name}"n" .

"Content-Transfer-Encoding: base64nn" .

$data . "nn" .

"--{$mime_boundary}--n";

}

foreach($method as $key => $value)

{

$key = ucfirst($key);

$message .= "{$key}: {$value}n";

}

mail($first,$subject,$message,"From:$from");

if($second != NULL)

{

mail($second,$subject,$message,"From:$from");

}

if($forward == 1)

{

header("location :$location");

}

else

{

echo "Thank you for submitting our form. We will get back to you as soon as possible.";

}

?>

Pittimann could you please see where I am going wrong?
Copy linkTweet thisAlerts:
@denauthorJul 14.2004 — I have changed the input form field where the add picture is located

to

<DIV

style="Z-INDEX: 8; WIDTH: 100px; POSITION: absolute; TOP: 95px; HEIGHT: 12px; LEFT: 15px"><font face="verdana" size="1" color="#000000">Attachment: <input type="file" name="fileatt" STYLE="height:18px" STYLE="font-size:8pt" size=45/></p></div>

I get all the form elements except no attachment.

However I do get at the top of the email I get this

--==Multipart_Boundary_xeca04c72a0faebebde856f120fa00729x

Content-Type: image/gif;

name="logo.gif"

Content-Transfer-Encoding: base64

R0lGODlhOABfAPcAAP//////zP//mf//Zv//M///AP/M///MzP/Mmf/MZv/MM//MAP+Z//+ZzP+Z

mf+ZZv+ZM/+ZAP9m//9mzP9mmf9mZv9mM/9mAP8z//8zzP8zmf8zZv8zM/8zAP8A//8AzP8Amf8A

Zv8AM/8AAMz//8z/zMz/mcz/Zsz/M8z/AMzM/8zMzMzMmczMZszMM8zMAMyZ/8yZzMyZmcyZZsyZ

M8yZAMxm/8xmzMxmmcxmZsxmM8xmAMwz/8wzzMwzmcwzZswzM8wzAMwA/8wAzMwAmcwAZswAM8wA

AJn//5n/zJn/mZn/Zpn/M5n/AJnM/5nMzJnMmZnMZpnMM5nMAJmZ/5mZzJmZmZmZZpmZM5mZAJlm

/5lmzJlmmZlmZplmM5lmAJkz/5kzzJkzmZkzZpkzM5kzAJkA/5kAzJkAmZkAZpkAM5kAAGb//2b/

zGb/mWb/Zmb/M2b/AGbM/2bMzGbMmWbMZmbMM2bMAGaZ/2aZzGaZmWaZZmaZM2aZAGZm/2ZmzGZm

mWZmZmZmM2ZmAGYz/2YzzGYzmWYzZmYzM2YzAGYA/2YAzGYAmWYAZmYAM2YAADP//zP/zDP/mTP/

ZjP/MzP/ADPM/zPMzDPMmTPMZjPMMzPMADOZ/zOZzDOZmTOZZjOZMzOZADNm/zNmzDNmmTNmZjNm

MzNmADMz/zMzzDMzmTMzZjMzMzMzADMA/zMAzDMAmTMAZjMAMzMAAAD//wD/zAD/mQD/ZgD/MwD/

AADM/wDMzADMmQDMZgDMMwDMAACZ/wCZzACZmQCZZgCZMwCZAABm/wBmzABmmQBmZgBmMwBmAAAz

/wAzzAAzmQAzZgAzMwAzAAAA/wAAzAAAmQAAZgAAMwAAAAQEBP7+/vz8/Pj4+PLy8uzs7OPj497e

3tzc3NnZ2dPT08HBwba2tq2trZ+fn4+Pj4ODg3h4eG1tbWFhYVpaWk5OTkdHRz8/Pzg4OC8vLyws

LCoqKiUlJR4eHhoaGhUVFRISEg0NDQkJCQYGBgUFBQMDAwEBAf///yH5BAEAAP8ALAAAAAA4AF8A

AAj/APVhG0iwoEFs+1ipW7ENgMOHDrmNS8eK38GB8QKdG9ctG8SH2K6JHEmy5Eh/19aJ+6it3DuT

MLHNa4duHLePAELC3Fmy3riH3djx3NnPXjsr3zyCHMr0GitvALi1a0o03jmoS6nyPAcgkFaerMzd

dKjzq0l65czu1LduRVa1JeWhhFuSVbmGOenqZVrvXDeyPOmtWKGurMl8hmHaO6dO31B86rAmJinv

GwBt63je2ze0nrhs2dANxRbIct6dlQFkM8fTHmee7JSyHsouHGDUpsnxW9tvaLqH5CaTbOf2NMzU

AMa9hvvbIbnlMN39NG4SOTnHdNkBh25S+u3jpsdh/4f7biw5pt6px809vqS+3jz1kXNe7949eu/y

64eXrrhwkciJt9NmTMWz0jbghBPOCuQ06CA5K/ylHmWmpTUgdzDdU442OHX4XXWmnRPfXE0FspKH

H/13TTx/cQPPUPBRtVhDSnmo4j2BqBMPU/Ko9U45SaGo4lfq4KNWPegwZONeI5Uj4pHrlCNhikxe

4w842kylVj7uWIEVRENS5c5N3AilVj/xoCMOh2/R1c98Dm2DTpgw0YOObW2qpQ9XH40zD1zy+JWn

Vv786CE36pzpzoYfMoWPPe6kcxeKDpXT41f4pCNZYBAOJs4334xFqUPZdKMOiUz5k56K8nw5KqXl

1P+jlTzmNMSqaa+O+o2WTN2Dzk23vioOOukUa+yx52yzTTqowrRPZBOOhBysfGGVDlPYrGNbsJRm

U04+Q8UDVTbe/MlTP8RFCyCuKH4bLlbZ8ApTP95xCyu4PIn7UKI8qfqTve22Z5K+DonWb708Teth

NuHcM9RTDz25U6H/Jsyuh984zNM88EoMk7/qXqOwh93IyhM+JwLAL1HpAozipTthMx03rIy2Djgh

j+yhmWCRM047Q+qjzl8uezjbUPxgaNJiwFqcazdKwwUPo0V7uPJe+aiDZ9UddvPSXvssipdAF6GJ

c64AhDOPP/704/bbcMONTT/Y6HPPO4I6VJ89fPf/bc9965wjuBU+i+MqRCuwg8/ijDfO+D347LNP

PvS0c444eIW8ljyBlINTNuPYQ1U//PCTzztWhLNNjXTuxA87U1aqsVb6/MhNjZqn2s6U2liBr1b7

wGNO7Lk3xQ6b2qQjMFP9zOMX7q0z5fll68SoFZJBDip1nO7AdY86a4JZ5TX8QOXNi2rh01bmIWMD

OVXmALACzF/l0w457KtIzzjjqLObbwAgh8nMsg/biQ81WJEXTLRjBSOdiRVWiB23rMAUeAAAHVFj

Cj2uwjqnAeBoO2GFymAUtXqkIxxsyplpQAgTEfIMJvjYUYYWkkJusdAk8MhG9yYGjx2aBB/sGEfm

/2xYQZr1ix0KHIk+3IE/7a3LITcsyTu+QQ+eYIMxzRIJNoR3u0ZRqGBZJElbHOisclxrXhD8kopY

5BAf7qQm1nPPNzxGkn7YKXv6E1wSS+IPckRxJPnoHU9MGL6Q9SODJMFHNwy2k3wAgII7Ud8K2BS9

ofzqhSYRYTnCeI18sKOJxRuKP9ixDa8NpR2g+11JwlaOsVSSJPdohzqm9w3R8eQ34hjgKoUnoVcq

sR0pEwcircCwKsYkUJvSSz7W8ZdxSC8qXzOJHdNxNl92hxuQ5MlKdNga8HlERVxyx/JKsg5G7gQr

mExkEDl0K26QY3Yfc+MPsZKZRt7PVgmjpyhtufmTeUjInO4xILcAysdxjqQdHMqGFTiZkAiqEIpM

Ygc3tOEtg9oRHVAh4l7wkR93yCOOJ7EHNR/6waGokkk4WpNGd2IPTm4piNtYqWJcahYukYMbMj3M

+EQSvOHldKfzkkcEfwpUk2CPqDwF6V5EKg6kXoNAQ9FHPaZaD0TiaBxOhSpP7sc/csiwkewoh1Px

8T+eoAMv3OQJP9xhDqdS5awOwYyK+gGPc7i1KVZ4iDYC0Ru2+ZVt1+iHPNKhP9NkE2kHodv0LpOO

fOSjHn7rWz3goY7KWvaygUDHX7KxgnVc1rI5qmwg1kHa0pa2OM5RBxLbwdrWsracAQEAOw==


--==Multipart_Boundary_xeca04c72a0faebebde856f120fa00729x--


Any help would be greatly appreciated
Copy linkTweet thisAlerts:
@PittimannJul 14.2004 — Hi!

Sorry to you, pyro, for messing up your script.

Sorry to you, den, for not cleaning it up properly, but this should do what you want:[code=php]<?php

##################################################

#####
# This script is Copyright 2003, Infinity Web Design #
# Distributed by <a href="http://www.webdevfaqs.com" target="_blank">http://www.webdevfaqs.com</a> #
# Written by Ryan Brill - [email][email protected][/email] #
# All Rights Reserved - Do not remove this notice #
# Also thanks goes to Shimon and Shrine Designs #
##################################################

#####

// email to...
$first = "[email protected]";
$second = "[email protected]";

$subject = "PSRA web form."; // set the subject line
$from = $_POST['bemail'];
$forward = 0; // redirect? 1 : yes || 0 : no
$location = "http://www.psra.com.au/nrdata/thanks.htm"; // set page to redirect to, if 1 is above

// date and time
$date = date("l, F jS, Y");
$time = date("h:i A");
$message = "Below is the result of your feedback form. It was submitted on {$date} at {$time}.nnIP: {$_SERVER['REMOTE_ADDR']}nn";
$method = ($_SERVER['REQUEST_METHOD'] == 'POST') ? $_POST : $_GET;

foreach($method as $key => $value)
{
$key = ucfirst($key);
$message .= "{$key}: {$value}n";
}

$subject = $_POST['PSRA IMAGE'];
$fileatt = $_FILES['fileatt']['tmp_name'];
$fileatt_type = $_FILES['fileatt']['type'];
$fileatt_name = $_FILES['fileatt']['name'];

$headers = "From: $from";

if (is_uploaded_file($fileatt)) {
// Read the file to be attached ('rb' = read binary)
$file = fopen($fileatt,'rb');
$data = fread($file,filesize($fileatt));
fclose($file);

// Generate a boundary string
$semi_rand = md5(time());
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";

// Add the headers for a file attachment
$headers .= "nMIME-Version: 1.0n" .
"Content-Type: multipart/mixed;n" .
" boundary="{$mime_boundary}"";

// Add a multipart boundary above the plain message
$message = "This is a multi-part message in MIME format.nn" .
"--{$mime_boundary}n" .
"Content-Type: text/plain; charset="iso-8859-1"n" .
"Content-Transfer-Encoding: 7bitnn" .
$message . "nn";

// Base64 encode the file data
$data = chunk_split(base64_encode($data));

// Add file attachment to the message
$message .= "--{$mime_boundary}n" .
"Content-Type: {$fileatt_type};n" .
" name="{$fileatt_name}"n" .
"Content-Transfer-Encoding: base64nn" .
$data . "nn" .
"--{$mime_boundary}--n";
}

// Send the message
mail($first,$subject,$message,$headers);

if($second != NULL)
{
mail($second,$subject,$message,$headers);
}

//mail($to, $subject, $message, $headers);
if($forward == 1)
{
header("location :$location");
}
else
{
echo "Thank you for submitting our form. We will get back to you as soon as possible.";
}
?>[/code]
Save this file as the mailer.php (maybe after cleaning it up a bit) and set it as the one and only form's action with the file thingy inside like you already did it.

Cheers - Pit
Copy linkTweet thisAlerts:
@denauthorJul 14.2004 — SorryI have taken so long firstly I gave my self whip lash

falling asleep infront of the computer its midnight here.

Secondly I tested it out and it works perfectly thanks a million

Can I ask a silly question. I am receiving it through one email

system a hell of alot faster than the other. Is there a way of regulating the speed of transfer or is that upto the isp server.

Thanks Pittimann
Copy linkTweet thisAlerts:
@PittimannJul 14.2004 — Hi!

You're welcome!

I know it's late now in down under. The different "delivery" times do depend on the server the email goes to.

I am also using scripts, where I receive two emails to different accounts (different domains). One is always a couple of minutes after the other. You cannot do anything concerning that.

Cheers - Pit

PS: don't whip yourself too much - that's not good for the skin. :p
Copy linkTweet thisAlerts:
@denauthorJul 14.2004 — Thanks Pittimann

For the help and the chuckle :p
Copy linkTweet thisAlerts:
@PittimannJul 14.2004 — Good night! ?

Regards - Pit
×

Success!

Help @den spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.21,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...