Avatar billede shoofixmafi Nybegynder
03. juni 2006 - 23:52 Der er 1 kommentar og
1 løsning

at indsaette mit websides URL og email i alle mail

X Hej

Jeg vil gerne idsaette min webside & min email
i alle email in dette PHP side.

$message="

header

$message


footer (your URL, company , logo )

";


Hvordan? Tak

Her er filen:
------------------------------->>>>

<?
function adsvtrform($row)
{
global $maxvalrate, $voterate, $tbclr_1, $fntclr_1, $ct, $msg, $det_cnt;

if ($voterate=='yes'){
$slopt="";
for ($i=1; $i<= $maxvalrate; $i++)
{
$slopt=$slopt."<option>$i";
}
$row['ratevtrt']=sprintf("%01.2f", $row['ratevtrt']);

$nrtval=$msg['current_rate'].": ".$row['ratevtrt']." ( ".$row['ratevtcn']." ".$msg['votes_v'].")";
if ($row['ratevtcn']==0){$nrtval=$msg['not_rated_yet'];}
$htmlform="
<form action='index.php?md=adsvtrate&ct=$ct'
  method='post' target='vt".$row['idnum']."'>
<table width='100%' bgcolor=$tbclr_1 border=0 cellspacing=1 cellpadding=1>
<tr><td>
<input type='hidden' name='idnmm' value='".$row['idnum']."'>
<input type='submit' value='".$msg['rate_this_ad'].":' class=formst STYLE='font-family:
Verdana,Geneva,Arial; font-size: 8pt; FONT-WEIGHT: bold;'>
  <select name='ratevalue'  class=formst STYLE='font-family: Verdana,Geneva,Arial;
font-size: 8pt;  FONT-WEIGHT: bold;'><option checked>$slopt</select>
</font>&nbsp;&nbsp;&nbsp;&nbsp;
<font FACE='ARIAL, HELVETICA'  color=$fntclr_1  size=-1>
$nrtval
   
</td></tr></table>
</form>
";
}
else{$htmlform="";}
return $htmlform;
}

function adsvtrate()
{
global $table_ads, $HTTP_POST_VARS, $maxvalrate, $ct, $maxvalrate, $msg, $msg2;

$idnm=$HTTP_POST_VARS['idnmm'];

$frmhtml2="
<form>
<input type='button' onClick='self.close()' value='Close Window'>
</form>
";
$frmhtml="
<p><center>
<FONT FACE='Verdana,Geneva,Arial' color='#000088' size=-1>
<b>
<a href='' onClick='self.close()'>".$msg['close_window_d']."</a>
</b>
</font></center>
";

if ($HTTP_POST_VARS['ratevalue'] > $maxvalrate)
{ echo "Incorrect voting !"; exit;}

if ($HTTP_POST_VARS['ratevalue'] =="")
{
$slopt="";
for ($i=1; $i<= $maxvalrate; $i++)
{
$slopt=$slopt."<option>$i";
}
$mssg="
<form action='index.php?md=adsvtrate&ct=$ct' method='post'>
<FONT FACE='Verdana,Geneva,Arial' color='#000088' size=-1>
<b>
".$msg2['please_choose_rate']." $maxvalrate: &nbsp;&nbsp;
<input type='hidden' name='idnmm' value='$idnm'>
<input type='submit' value='Rate ad (ID#$idnm):' class=formst STYLE='font-family:
Verdana,Geneva,Arial; font-size: 8pt; FONT-WEIGHT: bold;'>
  <select name='ratevalue'  class=formst STYLE='font-family: Verdana,Geneva,Arial;
font-size: 8pt;  FONT-WEIGHT: bold;'><option checked>$slopt</select>
</font>&nbsp;&nbsp;&nbsp;&nbsp;
</form>
</b></font>
$frmhtml
";
output_message($mssg);
exit;}

$rescheck=checkcntlogs('vote', $idnm);

if ($rescheck!="1"){
$msg= "
<FONT FACE='Verdana,Geneva,Arial' color='#000088' >
<b>
".$msg2['already_voted']."
</b></font>
$frmhtml
";
output_message($msg);
exit;
}
else {
$sql_query="select ratevtcn, ratevtrt from $table_ads where idnum=$idnm";
$sql_res=mysql_query("$sql_query");
$row = mysql_fetch_array ($sql_res);

$ratevtcn1=$row['ratevtcn']+1;
$ratevtrt1=$row['ratevtcn']/$ratevtcn1*$row['ratevtrt'] +
$HTTP_POST_VARS['ratevalue']/$ratevtcn1;

$sql_query="update $table_ads set ratevtrt=$ratevtrt1, ratevtcn=$ratevtcn1
where idnum=$idnm ";

mysql_query("$sql_query");

$msg_out="

<font FACE='ARIAL, HELVETICA' color='#000088'>
<b>
".$msg2['thank_for_voting']."
</b></font>
$frmhtml
";
output_message($msg_out);
exit;
}
}



function adscounter($idnm, $cnttype)
{
global $table_ads;

$checkres=checkcntlogs($cnttype, $idnm);
if ($checkres=="1"){
if ($cnttype=='vis'){
$sql_query="update $table_ads set cntvstr=cntvstr+1 where idnum=$idnm ";
}

if ($cnttype=='pml'){
$sql_query="update $table_ads set cntemll=cntemll+1 where idnum=$idnm ";
}

mysql_query("$sql_query");
}

return $checkres;
}

function checkcntlogs($cnttype, $idnm)
{
global $table_logs, $REMOTE_ADDR, $exprlogs, $uselogsvmv;

$checkres="1";

if ($uselogsvmv=='yes'){
$timen1=time();

$checkres="0";
$sql_query="select count(lidnum) from $table_logs
where ltype='$cnttype' and lip='$REMOTE_ADDR' and  lidnum=$idnm ";

$sql_res=mysql_query("$sql_query");
$row=mysql_fetch_row($sql_res);
$lcount=$row[0];
if ($lcount > 0){
$checkres="0";
}
else { $checkres="1";

$sql_query="insert into $table_logs (ltime, ltype, lip, lidnum)
values ($timen1, '$cnttype', '$REMOTE_ADDR', $idnm) ";
mysql_query("$sql_query");
}
$time1hlt=$timen1 -  $exprlogs*86400;
$sql_query="delete from $table_logs where (ltime < $time1hlt) ";
mysql_query("$sql_query");
}
return $checkres;
}

function output_message($message)
{
global $cat_fields, $photos_count, $html_header, $html_footer, $id,
$ct, $categories, $ad_second_width, $left_width_sp, $exp_period, $msg;
echo $html_header;
echo "
<center><table width='600'><tr><td>
<font FACE='ARIAL, HELVETICA' COLOR='BLACK'> <font size=-1><b>
<a href='index.php'>".$msg['top'].":</a></b></font>
&nbsp;
<font FACE='ARIAL, HELVETICA' COLOR='#000099'>
<b>&nbsp;
<a href='index.php?ct=$ct'>".$categories[$ct][0]."
</b></a>
</font>
<hr size='1'><p>
$message
<p><hr size='1'>
</tr></td></table>
</center>
";
echo $html_footer;
exit;
}

function getuseradsnum($searchemail)
{
global  $table_ads;
$sql_query="select count(idnum) from $table_ads where email='$searchemail' and visible=1";
$sql_res=mysql_query("$sql_query");
$row = mysql_fetch_row($sql_res);
$mcount=$row[0];

return $mcount;
}

function getmbadsnum($mb1_login)
{
global  $table_ads;
$sql_query="select count(idnum) from $table_ads where login='$mb1_login' and visible=1";
$sql_res=mysql_query("$sql_query");
$row = mysql_fetch_row($sql_res);
$mcount=$row[0];

return $mcount;
}

function check_email($email)
{
global $msg2;
$email=ereg_replace(' ', '', $email);
$a1=split('@', $email);
$a2=split('\.',$email);

if (($a1[0] == "") or ($a1[1] == "") or ($a2[0] == "") or ($a2[1] == ""))
{
$message="
<font FACE='ARIAL, HELVETICA' COLOR='#000000' >
<b> ".$msg2['email_3']." <font color='#AA0000'> $email</font> ".$msg2['has_incr_format']." </b> 
<font size='-1' color='#000088'>
<p> ".$msg2['return_and_fillfl']."
</font></font>
";
output_message($message);
exit;
}
return $email;
}


function sendpassw($ps_email)
{
global $cat_fields, $table_ads,$adm_email, $ct, $msg2;
$ps_email=check_email($ps_email);
$sql_query="select idnum, passw, title from $table_ads where email='$ps_email'";
$sql_res=mysql_query("$sql_query");


$kll221="0";
while ($row = mysql_fetch_array ($sql_res))
{
$kll221="1";
$p_message="
".$msg2['title_t3'].": ".$row['title'].";
".$msg2['Ad_id1']." : ".$row['idnum'].";
".$msg2['Your_password'].": ".$row['passw'].";
";
$p_subject=$msg2['Your_password'];

sndmail($ps_email, $p_subject, $p_message, $adm_email);
}

if ($kll221=="0")
{
$info_message="
".$msg2['email_3']." <b> $ps_email </b> ".$msg2['doesnt_found']."
";
output_message($info_message);
exit;
}

$info_message="
".$msg2['login_pass_sent_em']."
";
output_message($info_message);
exit;
}

function send_mail($idnum)
{
global $pm_message, $pm_email, $pm_subject, $msg2,
$sendcopytoadm, $redirtoadm, $adm_email, $categories, $cook_login, $plcntpml,
$emltp, $emllogin;

if ($plcntpml=="yes"){ adscounter($idnum, 'pml');}

$fields_val=get_edit_info($idnum);

$id_email=$fields_val['email'];
$id_num1=$fields_val['idnum'];
$id_title1=$fields_val['title'];
$id_cat1=$fields_val['catname'];
$id_categor1=$categories[$id_cat1][0];

if($emltp=='mblg'){
include("mb_conf.php");
$sql_query="select * from $table_mb where login='$emllogin'";
$sql_res=mysql_query("$sql_query");
$row = mysql_fetch_array ($sql_res);
$id_email=$row['email'];
}

if ($cook_login!='')
{
$mb_login_inf="
".$msg2['message_sent_by_member']." '$cook_login'
";
}

if (($redirtoadm=='yes') or ($sendcopytoadm=='yes'))
{
$mail_message="
".$msg2['message_from']." $pm_email ".$msg2['to_t2']." $id_email .
".$msg2['Category_3'].":$id_categor1; ".$msg2['Ad_id1'].": $id_num1; ".$msg2['title_t3'].":$id_title1

$pm_message

$mb_login_inf
";
sndmail($adm_email, $pm_subject, $mail_message, $pm_email);
}

if ($redirtoadm!='yes') {
$mail_message="
".$msg2['For_your_ad'].":
".$msg2['Category_3'].":$id_categor1; ".$msg2['Ad_id1'].": $id_num1; ".$msg2['title_t3'].":$id_title1

".$msg2['following_messg_sent'].":

$pm_message

$mb_login_inf

".$msg2['For_detl_cont_admin']." $adm_email
";
sndmail($id_email, $pm_subject, $mail_message, $pm_email);
}


$info_message="
<FONT FACE='Verdana,Geneva,Arial' SIZE='+1' color='#000099'>
<b> ".$msg2['mssg_sent_succssfl']." </b>
</font>
";

output_message($info_message);
exit;
}

function sndmail_bak ($email, $subject, $message, $emailfrom)
{
echo "
<p>mail= $email
<br>subject=$subject
<br>message=$message
<br>From: $emailfrom

";
}

function sndmail ($email, $subject, $message, $emailfrom)
{
$message="

????? ????? ????? ??? ???? - ???? ???? ??


$message


Shoofi-Mafi ??
http://www.shoofi-mafi.com
-------------------------->>>>
??? ?????? ???? ??? ??? ????? .. ???? ?? ???

";

mail($email, $subject, $message,"From: $emailfrom");
}






function sndmail ($email, $subject, $message, $emailfrom)
{
mail($email, $subject, $message,"From: $emailfrom");
}

function delete_expired_ads()
{
global $cat_fields, $table_ads, $exp_period, $exp_perdhlt;
$time1=time() - $exp_period*86400;
$sql_query="select idnum from $table_ads where (time < $time1) and ((adrate=0) or (ISNULL(adrate)=1)) ";
$sql_res=mysql_query("$sql_query");
while ($row = mysql_fetch_array ($sql_res))

$del_id=$row['idnum'];
$sql_query="delete from $table_ads where idnum=$del_id";
mysql_query("$sql_query");
delete_photos($del_id);
}

$time1hlt=time() - $exp_perdhlt*86400;
$sql_query="select idnum from $table_ads where (time < $time1hlt) and (adrate > 0)";
$sql_res=mysql_query("$sql_query");
while ($row = mysql_fetch_array ($sql_res))
{
$del_id=$row['idnum'];
$sql_query="delete from $table_ads where idnum=$del_id";
mysql_query("$sql_query");
delete_photos($del_id);
}
}

function delete_photos($id)
{
global $photo_path, $multimedia_path, $previewphoto_path, $photos_count;

get_jpg_path($id);

for ($i=1; $i<=$photos_count; $i++)
{
if (file_exists($photo_path[$i])) {unlink($photo_path[$i]);}
}
if (file_exists($previewphoto_path)) {unlink($previewphoto_path);}
if (file_exists($multimedia_path)) {unlink($multimedia_path);}
}

function get_date($time1)
{
global $months_nm;
$months=$months_nm;
$d=getdate($time1);
$d2=$d['mon']; 
$date_string=$months[$d2-1]." ".$d['mday'].", ".$d['year'];
return $date_string;

}

function get_ad_details($id)
{
global $cat_fields, $table_ads, $msg;
$sql_query="select * from $table_ads where idnum=$id";
$sql_res=mysql_query("$sql_query");
$row = mysql_fetch_array ($sql_res);
if ($row['idnum']==""){
$message="
<font FACE='ARIAL, HELVETICA' COLOR='#880000' >
<b>
".$msg['no_ad_with_id']." $id
</b>
</font>
";
output_message($message);
exit;
}
if ($row['visible']!=1){
$message="
<font FACE='ARIAL, HELVETICA' COLOR='#880000' >
<b><center>
".$msg2['inaccessible_ad']."
</center></b>
</font>
";
output_message($message);
exit;
}
return $row;
}

function get_edit_info($ed_id)
{
global $cat_fields, $table_ads;
$sql_query="select * from $table_ads where idnum=$ed_id";
$sql_res=mysql_query("$sql_query");
$row = @mysql_fetch_array ($sql_res);

if ($row['idnum']!=""){
foreach ($row as $key => $value)
{
$row[$key]=ereg_replace("'", "&#039;", $row[$key]);
}
}
return $row;
}

function delete_ad($ed_id)
{
global  $table_ads, $msg2;
$sql_query="delete from $table_ads where idnum=$ed_id";
mysql_query("$sql_query");
delete_photos($ed_id);

$message="
<font FACE='ARIAL, HELVETICA' COLOR='BLACK'>
<b> ".$msg2['your_ad_deleted']." </b>
</font>
";
output_message($message);
exit;
}



function get_cat_count($ct)
{
global $cat_fields, $table_ads,  $page, $adsonpage, $schopt, $_REQUEST;
if ($_REQUEST[$schopt]!=''){$wrvl="and $schopt='".$_REQUEST[$schopt]."'";};

$sql_query="select count(idnum) from $table_ads where
catname='$ct' and visible=1 $wrvl ";

$sql_res=mysql_query("$sql_query");
$row=mysql_fetch_row($sql_res);
$count=$row[0];
return $count;
}

function get_date_update($ct)
{
global $cat_fields, $table_ads,  $page, $adsonpage, $schopt, $_REQUEST;
if ($_REQUEST[$schopt]!=''){$wrvl="and $schopt='".$_REQUEST[$schopt]."'";};

$sql_query="select time from $table_ads where
catname='$ct' and visible=1 $wrvl order by time desc ";
$sql_res=mysql_query("$sql_query");
$row=mysql_fetch_row($sql_res);
$time1=$row[0];
$date_update=get_short_date($time1);
if ($time1==0) {$date_update="";}
return $date_update;
}

?>
Avatar billede olebole Juniormester
04. juni 2006 - 16:04 #1
<ole>

Kunne du mon lokkes til at bruge så megen energi på løsningen af dit problem, at du kunne beskrive det ... eller skal vi bare lege quiz?

/mvh
</bole>
Avatar billede shoofixmafi Nybegynder
04. juni 2006 - 16:53 #2
tak olebole

jeg fik det svar som jeg leder efter


$message="

.................her kan jeg skriv hvad jeg har lyst til i almindlig text

$message


.................og her kan jeg skriv hvad jeg har lyst til i almindlig text

";
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview
Kategori
IT-kurser om Microsoft 365, sikkerhed, personlig vækst, udvikling, digital markedsføring, grafisk design, SAP og forretningsanalyse.

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester