Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Contact.php
Parašė __________· 2008 Vas. 16 17:02:36
#1
Kaip būtų galima padaryti kad paspaudus kontaktai rodytu tavo parašyta tekstą? Contact.php jai neklystu, o kurias eilutes redaguoti. ;)))?;)
Parašė bad_user· 2008 Vas. 16 17:02:19
#2
Duok koda. Ir teksta kuris turi buti prašytas. ;)
Parašė ramon· 2008 Vas. 16 17:02:12
#3
Nu tai ziurek submit.php faila kaip ten atrodo ['prewiev']
Parašė __________· 2008 Vas. 16 18:02:54
#4
<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------*/
require_once "maincore.php";
require_once "subheader.php";
require_once "side_left.php";
include LOCALE.LOCALESET."contact.php";
if (isset($_POST['sendmessage'])) {
$error = "";
$mailname = substr(stripinput(trim($_POST['mailname'])),0,50);
$email = substr(stripinput(trim($_POST['email'])),0,100);
$subject = substr(str_replace(array("\r","\n","@"), "", descript(stripslash(trim($_POST['subject'])))),0,50);
$message = descript(stripslash(trim($_POST['message'])));
if ($mailname == "") {
$error .= "· <span class='alt'>".$locale['420']."</span><br>\n";
}
if ($email == "" || !preg_match("/^[-0-9A-Z_\.]{1,50}@([-0-9A-Z_\.]+\.){1,50}([0-9A-Z]){2,4}$/i", $email)) {
$error .= "· <span class='alt'>".$locale['421']."</span><br>\n";
}
if ($subject == "") {
$error .= "· <span class='alt'>".$locale['422']."</span><br>\n";
}
if ($message == "") {
$error .= "· <span class='alt'>".$locale['423']."</span><br>\n";
}
if (!$error) {
require_once INCLUDES."sendmail_include.php";
sendemail($settings['siteusername'],$settings['siteemail'],$mailname,$email,$subject,$message);
opentable($locale['400']);
echo "<center><br>\n".$locale['440']."<br><br>\n".$locale['441']."</center><br>\n";
closetable();
} else {
opentable($locale['400']);
echo "<center><br>\n".$locale['442']."<br><br>\n$error<br>\n".$locale['443']."</center><br>\n";
closetable();
}
} else {
opentable($locale['400']);
echo $locale['401']."<br><br>
<form name='userform' method='post' action='".FUSION_SELF."'>
<table align='center' cellpadding='0' cellspacing='0' class='tbl'>
<tr>
<td width='100'>".$locale['402']."</td>
<td><input type='text' name='mailname' maxlength='50' class='textbox' style='width: 200px;'></td>
</tr>
<tr>
<td width='100'>".$locale['403']."</td>
<td><input type='text' name='email' maxlength='100' class='textbox' style='width: 200px;'></td>
</tr>
<tr>
<td width='100'>".$locale['404']."</td>
<td><input type='text' name='subject' maxlength='50' class='textbox' style='width: 200px;'></td>
</tr>
<tr><td valign='top' width='90'>".$locale['405']."</td>
<td><textarea name='message' rows='10' cols='58' class='textbox'></textarea></td>
</tr>
<tr>
<td align='center' colspan='2'>
<input type='submit' name='sendmessage' value='".$locale['406']."' class='button'>
</td>
</tr>
</table>
</form>\n";
closetable();
}
require_once "side_right.php";
require_once "footer.php";
?>
Songai, jai gali įrašyk tekstą (pvz ten cia rasyk teksta) ir aš surasiu kur įsiterpti savo tekstą, dar gal galėtum padaryti kad nebūtų tos PM siuntimo. Ačiū už pagalbą. :)
EDITkiller pataisiau pats tą kodą. :[
Redagavo __________· 2008 Vas. 16 18:02:29
Parašė __________· 2008 Vas. 17 19:02:01
#5
Dar kartą sorry už floodą. Galit padėti :( ? Nes jei temos nerodo pagrindiniam psl tai niekas nebeatrašo į temą, nes nemato jos. :)
Parašė Rytis· 2008 Vas. 17 19:02:44
#6
Failas:
fusion_dir/locale/Lithuanian/contact.php
4 eilutė:
$locale['401'] = "B�dai, kuriais galite su mumis susisiekti
<a href='mailto:".str_replace("@","@",$settings['siteemail'])."'>".str_replace("@","@",$settings['siteemail'])."</a>.
Jei tu esi narys, gali man si�sti <a href='messages.php?msg_send=1'>Asmenin� �inut�</a>.
Arba gali u�pildyti form� esan�i� �iame puslapyje, ir man bus atsi�sta �inut� e-pa�tu.";
Tarp "" įrašai savo tekstą, pvz.:
$locale['401'] = "ČIA TAVO TEKSTAS";
Parašė __________· 2008 Vas. 17 19:02:51
#7
Ryti, peržiūrėjau ta failą visą atidžiai nieko nebuvo apie kontaktus. :(
Parašė Rytis· 2008 Vas. 17 19:02:13
#8
Paskaityk mano postą dar kartą, nes suklydau ;)
Atsiprašau už nepatogumus.
Parašė __________· 2008 Vas. 17 20:02:40
#9
Nesvarbu svarbu padėjai, ačiū viskas veikia. ;)