ciao a tutti, qualcuno ha idea se esiste una contri o qualcuno ha qualche consiglio da darmi per mettere nell'header la combo per la valuta i due link delle lingue ?
come in esempio allegato.
combo valuta e link lingue ...
Moderatore: mod Generali
- antonio.555
- membro Junior
- Messaggi: 34
- Iscritto il: 15/12/2008, 19:02
- antonio.555
- membro Junior
- Messaggi: 34
- Iscritto il: 15/12/2008, 19:02
Re: combo valuta e link lingue ...
ok, qualche progresso l'ho fatto.... pero' la combo delle valute propio non ne vengo a capo.....
idee??? suggerimenti???
idee??? suggerimenti???
Re: combo valuta e link lingue ...
Prova cosi...crea questo file dentro boxes
chiamalo come ti pare e poi dove vuoi inserire il file metti
Questo codice al posto di COMBO quindi dentro i tag html esempio
Codice: Seleziona tutto
<?php
/*
$Id: currencies_az01.php,v 1.0 2004/09/09 hpdl Exp $
For osCommerce, Open Source E-Commerce Solutions
Created by http://www.template-faq.com
Copyright (c) 2004 template-faq.com, Inc
*/
?>
<!-- currencies //-->
<tr>
<td>
<?php
if (isset($currencies) && is_object($currencies)) {
reset($currencies->currencies);
$currencies_array = array();
while (list($key, $value) = each($currencies->currencies)) {
$currencies_array[] = array('id' => $key, 'text' => $value['title']);
}
$hidden_get_variables = '';
reset($HTTP_GET_VARS);
while (list($key, $value) = each($HTTP_GET_VARS)) {
if ( ($key != 'currency') && ($key != tep_session_name()) && ($key != 'x') && ($key != 'y') ) {
$hidden_get_variables .= tep_draw_hidden_field($key, $value);
}
}
$currencies_string = '';
$currencies_string .= tep_draw_form('currencies', tep_href_link(basename($PHP_SELF), '', $request_type, false), 'get');
$currencies_string .= tep_draw_pull_down_menu('currency', $currencies_array, $currency, 'onChange="this.form.submit();"') . $hidden_get_variables . tep_hide_session_id();
$currencies_string .= '</form>';
$info_box_contents = array();
$info_box_contents[] = array('align' => 'center',
'text' => $currencies_string);
new infoBox($info_box_contents, $column_location, 0, 1);
}
?>
</td>
</tr>
Codice: Seleziona tutto
<?php include('includes/boxes/nomefile.php'); ?>
Codice: Seleziona tutto
<tr><?php codice ?></tr>
VHosting Solution
Web Hosting Da 26 Euro Annuo
OsCommerce Hosting 144 Euro Annuo
15% di sconto con il codice: OSC-Member su WebHosting - OSC Hosting
http://www.vhosting-it.com
info@vhosting-it.com
Web Hosting Da 26 Euro Annuo
OsCommerce Hosting 144 Euro Annuo
15% di sconto con il codice: OSC-Member su WebHosting - OSC Hosting
http://www.vhosting-it.com
info@vhosting-it.com
- antonio.555
- membro Junior
- Messaggi: 34
- Iscritto il: 15/12/2008, 19:02
Re: combo valuta e link lingue ...
ciao, grazie 1000 adesso funziona, mi e' rimasto solo di litigare con le tabelle....
grazie ancora
A.
grazie ancora
A.
Re: combo valuta e link lingue ...
di nullaantonio.555 ha scritto:ciao, grazie 1000 adesso funziona, mi e' rimasto solo di litigare con le tabelle....
grazie ancora
A.
VHosting Solution
Web Hosting Da 26 Euro Annuo
OsCommerce Hosting 144 Euro Annuo
15% di sconto con il codice: OSC-Member su WebHosting - OSC Hosting
http://www.vhosting-it.com
info@vhosting-it.com
Web Hosting Da 26 Euro Annuo
OsCommerce Hosting 144 Euro Annuo
15% di sconto con il codice: OSC-Member su WebHosting - OSC Hosting
http://www.vhosting-it.com
info@vhosting-it.com