Nie jesteś zalogowany.
Jeśli nie posiadasz konta, zarejestruj je już teraz! Pozwoli Ci ono w pełni korzystać z naszego serwisu. Spamerom dziękujemy!

Ogłoszenie

Prosimy o pomoc dla małej Julki — przekaż 1% podatku na Fundacji Dzieciom zdazyć z Pomocą.
Więcej informacji na dug.net.pl/pomagamy/.

#1  2014-02-16 01:10:40

  pink - Użytkownik

pink
Użytkownik
Skąd: P17PY93
Zarejestrowany: 2005-09-16
Serwis

PHP Variable

mam takie cus

variables/variables.php

Kod:

<?php
$priceA1='150';
$priceA3='60';
$priceA4='38';
$priceA5='28';
$pricetagA1=<input type="hidden" name="amount" value="150.00">;
$pricetagA3=<input type="hidden" name="amount" value="60.00">;
$pricetagA4=<input type="hidden" name="amount" value="38.00">;
$pricetagA5=<input type="hidden" name="amount" value="28.00">;

?>

includes/includes.php

Kod:

              
<tr><td>A1  </td><td>Pencil Sketch Print :</td><td>€<?php echo $priceA1 ?></td><td><b></td></td></tr> 
<tr><td>A3  </td><td>Pencil Sketch Print :</td><td>€<?php echo $priceA3 ?></td><td><b></td></td></tr>
<tr><td>A3  </td><td>Painting Print:</td><td>€<?php echo $priceA3 ?></td><td><b></td></td></tr>
<tr><td>A4  </td><td>Pencil Pketch Print : </td><td>€<?php echo $priceA4 ?></td><td><b></td></td></tr>                
<tr><td>A5  </td><td>Pencil Pketch Print : </td><td>€<?php echo $priceA5 ?></td><td><b></td></td></tr>

no i cena sie nie wyswietla, dlaczego???

Ostatnio edytowany przez pink (2014-02-16 01:14:15)


T430 think-box 4.9-custom x86_64 Intel(R) Core(TM) i5-3230M CPU @ 2.60GHz GenuineIntel GNU/Linux
"Doktor plama i maharadża są pod złotym leszczem." "Człowieka od zwierzęcia odróżnia ciekawość świata. Patrze słucham i wyciągam wnioski."
http://przemyslawmamon.com/
https://www.behance.net/przemyslawmamon

Offline

 

#2  2014-02-16 10:18:00

  kamikaze - Administrator

kamikaze
Administrator
Zarejestrowany: 2004-04-16

Re: PHP Variable

Zamiast:

$pricetagA1=<input type="hidden" name="amount" value="150.00">;

powinno być:

$pricetagA1='<input type="hidden" name="amount" value="150.00">';

A czemu się nie wyświetla, może przez ten błąd. Dobrze byłoby włączyć pokazywanie błędów na czas programowania. A może źle includujesz includes.php i variables.php, ale to ciężko powiedzieć bo nie wkleiłeś kodu, który ich używa.

Offline

 

#3  2014-02-16 11:43:28

  omores3 - Użytkownik

omores3
Użytkownik
Skąd: Droga Mleczna
Zarejestrowany: 2013-03-26

Re: PHP Variable

Kod:

<?php
$priceA1=150; //cena to raczej typ int / unsigned no nie ?

$pricetagA1="<input type=\"hidden\" name=\"amount\" value=\"$A1\">"; //możesz zmieniać tylko w jednym miejscu w kodzie cenę
?>

LUB

pricetagA1='<input type="hidden" name="amount" value="' . $A1 . '">'; //lub tak z użyciem operatora . wtedy nie trzeba dawać \ przed znakami typu - " 


<?php
require_once('variables.php');
?>

<tr><td><A1  </td><td>Pencil Sketch Print :</td><td>€<?php echo $priceA1 ?></td><td><b></td></td></tr>  //kod php zawsze w znacznikach <?php

Ostatnio edytowany przez omores3 (2014-02-16 11:48:35)


O Tempora, o mores!

Offline

 

#4  2014-02-16 12:19:05

  pink - Użytkownik

pink
Użytkownik
Skąd: P17PY93
Zarejestrowany: 2005-09-16
Serwis

Re: PHP Variable

te pierwsze 4 pozycje to tylko wyswietlany text ma byc z cena w tabelce.

natomiast nastepne 4 pozycje to sa ceny dla paypal check-out kture o dziwo dzialaja dobrze

tu jest link
http://odeairishart.com/cork.php

przerobilem to nanphp bo koles zmienia ceny i takie tam wiec chcialem to troche usprawnic.


T430 think-box 4.9-custom x86_64 Intel(R) Core(TM) i5-3230M CPU @ 2.60GHz GenuineIntel GNU/Linux
"Doktor plama i maharadża są pod złotym leszczem." "Człowieka od zwierzęcia odróżnia ciekawość świata. Patrze słucham i wyciągam wnioski."
http://przemyslawmamon.com/
https://www.behance.net/przemyslawmamon

Offline

 

#5  2014-02-16 16:08:57

  pink - Użytkownik

pink
Użytkownik
Skąd: P17PY93
Zarejestrowany: 2005-09-16
Serwis

Re: PHP Variable

Kod:

<?php
$priceA1=150;
$priceA3=60;
$priceA4=38;
$priceA5=28;
$pricetagA1=<input type="hidden" name="amount" value="' . $A1 . '">;
$pricetagA3=<input type="hidden" name="amount" value="' . $A3 . '">;
$pricetagA4=<input type="hidden" name="amount" value="' . $A4 . '">;
$pricetagA5=<input type="hidden" name="amount" value="' . $A5 . '">;
?>

w takiej postaci dziala

wysmienicie!!!
dzieki omores3 przy okazji znowu sie czegos nauczylem.

pomylka
nie dziala, nie wyswietla cen


gdzie mam to wstawic???
<?php
require_once('variables.php');
?>

Ostatnio edytowany przez pink (2014-02-16 18:17:03)


T430 think-box 4.9-custom x86_64 Intel(R) Core(TM) i5-3230M CPU @ 2.60GHz GenuineIntel GNU/Linux
"Doktor plama i maharadża są pod złotym leszczem." "Człowieka od zwierzęcia odróżnia ciekawość świata. Patrze słucham i wyciągam wnioski."
http://przemyslawmamon.com/
https://www.behance.net/przemyslawmamon

Offline

 

#6  2014-02-16 18:32:54

  omores3 - Użytkownik

omores3
Użytkownik
Skąd: Droga Mleczna
Zarejestrowany: 2013-03-26

Re: PHP Variable

No na moje oko to nazwy zmiennych pomieszałeś... :D

Kod:

<?php
$priceA1=150;
$priceA3=60;
$priceA4=38;
$priceA5=28;
$pricetagA1=<input type="hidden" name="amount" value="' . $priceA1 . '">;
$pricetagA3=<input type="hidden" name="amount" value="' . $priceA3 . '">;
$pricetagA4=<input type="hidden" name="amount" value="' . $priceA4 . '">;
$pricetagA5=<input type="hidden" name="amount" value="' . $priceA5 . '">;
?>

Wstaw to przed użyciem zmiennych z pliku variables.php.
A najczytelniej na poczatku twojego pliku tj. includes.php
Pamiętaj że ścieżkę do pliku variables.php podajesz względem includes.php
.. to katalog nadrzędny czyli np. tak to powinno wyglądać:

Kod:

 require_once('../variables/variables.php')

Ostatnio edytowany przez omores3 (2014-02-16 18:35:05)


O Tempora, o mores!

Offline

 

#7  2014-02-16 18:45:20

  pink - Użytkownik

pink
Użytkownik
Skąd: P17PY93
Zarejestrowany: 2005-09-16
Serwis

Re: PHP Variable

nic nie dziala trzeba to przepisac od nowa ale dzieki za pomoc.

to jest caly kod tego paypal-chekautu tj includes/paypal.php

Kod:

<!---------#########PRICE LIST#######---------------------->

                
<div id="banner">
                <h1  class="" style='padding: 1em;'>PRICE LIST AND CHECKOUT, UNFRAMED:</h1>               
              <table>
              
              <tr>
                <th><b>Price List:</b></th>
                <th></th><th></th><th></th>
                <th></th>
                </tr>
                <tbody>                    
              <tr><td>A1  </td><td>Pencil Sketch Print :</td><td>€<?php echo $priceA1 ?></td><td>Large Size Unmnt/Unframed (80cm x 60 cm).</td><td><b></td></td></tr>
              <tr><td>A3  </td><td>Pencil Sketch Print :</td><td>€60</td><td>Medium Size Unmnt/Unframed (42cm x 29.7cm ).</td><td><b></td></td></tr>
              <tr><td>A3  </td><td>Painting Print:</td><td>€60</td><td>Medium Size Unmnt/Unframed.</td><td><b></td></td></tr>
                <tr><td>A4  </td><td>Pencil Pketch Print : </td><td>€38</td><td>Small Size Mounted/Unframed (21 cm x 29.7cm).</td><td><b></td></td></tr>                
                <tr><td>A5  </td><td>Pencil Pketch Print : </td><td>€28</td><td>Small Size Mounted/Unframed (21 cm x 14.8cm).</td><td><b></td></td></tr>                
                <tr>
                <th><b>IRELAND</b></th>
                <th></th><th>(Postage and packaging)</th><th></th><th></th>
                </tr>
                <tr><td>A1  </td><td>Large Size </td><td>€5</td><td></td><td><b></td></td></tr>
              <tr><td>A3, A4, A5  </td><td>Medium/Small Size </td><td>€5</td><td></td><td><b></td></td></tr>           
              <tr>
                <th>(Allow 5 working days)</th>
                <th></th><th></th><th></th>
                <th></th>
                <th></th>
                </tr>    
                
                <tr>
                <th><b>U.K</b></th>
                <th></th><th>(Postage and packaging)</th><th></th><th></th>
                </tr>
                <tr><td>A1  </td><td>Large Size </td><td>€6</td><td></td><td><b></td></td></tr>
              <tr><td>A3, A4, A5  </td><td>Medium/Small Size </td><td>€5</td><td></td><td><b></td></td></tr>
              <tr>
                <th>(Allow 7 working days)</th>
                <th></th><th></th><th></th>
                <th></th>
                </tr>       
                
                <tr>
                <th><b>Europe</b></th>
                <th></th><th>(Postage and packaging)</th><th></th><th></th>
                </tr>
                <tr><td>A1  </td><td>Large Size </td><td>€6</td><td></td><td><b></td></td></tr>
              <tr><td>A3, A4, A5  </td><td>Medium/Small Size </td><td>€5</td><td></td><td><b></td></td></tr>
              <tr>
                <th>(Allow 10 working days)</th>
                <th></th><th></th><th></th>
                <th></th>
                </tr>
                <th><b>U.S.A</b></th>
                <th></th><th>(Postage and packaging)</th><th></th><th></th>
                </tr>
                <tr><td>A1  </td><td>Large Size </td><td>€6</td><td></td><td><b></td></td></tr>
              <tr><td>A3, A4, A5  </td><td>Medium/Small Size </td><td>€5</td><td></td><td><b></td></td></tr>
              <tr>
                <th>(Allow 10 working days)</th>
                <th></th>
                <th></th>
                <th></th><th></th>                
                </tbody>       
              </table>
              <br><br>
              
              <!---*******PAYPAL IRELAND******--Pencil Sketch Large A1------------150+5/-->
              <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Pencil Sketch Large A1">
                <?php echo $pricetagA1 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
                <th><b>PAYPAL CHECKOUT IRELAND</b></br>please be sure you typing in correct number and title!!!</th>
                  <tr>
                <td style="width: 50%;">Pencil Sketch Large Size A1</td>
               <td>
                <input type="hidden" name="on0" value="name">Title</td>
                <td>
                <input type="text" name="os0" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
                
                
                <!---------------------Pencil Sketch Medium Size A3------------60+5/-->
              
              
              <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Pencil Sketch Medium A3">
                <?php echo $pricetagA3 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
            
                  <tr>
                <td style="width: 50%;">Pencil Sketch Medium Size A3</td>
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
            
                
                <!--------------------Painting Medium Size A3-------------60+5/-->
              
              
              <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Painting Medium Size A3">
                <?php echo $pricetagA3 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
                
                  <tr>
                <td style="width: 50%;">Painting Medium Size A3</td>
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
                
                    <!--------------------Small Size A4-------------30+5/-->
               
               <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Small Size A4">
                <?php echo $pricetagA4 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
            
                  <tr>
                <td style="width: 50%;">Small Size A4</td> 
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
                
                <!--------------------Pencil Sketch Small Size A5-------------20/-->
                
               <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Small Size A5">
                <?php echo $pricetagA5 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
            
                  <tr>
                <td style="width: 50%;">Small Size A5</td> 
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
                
                <br><br>
                
                
                <!---*******PAYPAL OTHER******Pencil Sketch Large A1------------150+6/-->
                 
                 
              <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Pencil Sketch Large A1">
                <?php echo $pricetagA1 ?>
                <input type="hidden" name="shipping" value="6.00">
                <table>
                <th><b>PAYPAL CHECKOUT UK/EUROPE/U.S.A</b></br>please be sure you typing in correct number and title!!!</th>
                  <tr>
                  
                <td style="width: 50%;">Pencil Sketch Large Size A1</td>
               <td>
                <input type="hidden" name="on0" value="name">Title</td>
                <td>
                <input type="text" name="os0" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
                
                
                <!-----------------------Pencil Sketch Medium Size A3----------60+5/-->              
              
              
              <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Pencil Sketch Medium Size A3">
                <?php echo $pricetagA3 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
            
                  <tr>
                <td style="width: 50%;">Pencil Sketch Medium Size A3</td> 
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
            
                
                <!--------------------Painting Medium Size A3-------------60+5/-->
              
              
              <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Painting Medium Size A3">
                <?php echo $pricetagA3 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
                
                  <tr>
                <td style="width: 50%;">Painting Medium Size A3</td>
 
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>

                <!--------------------Small Size A4-------------20+5/-->
               
               <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Small Size A4">
                <?php echo $pricetagA4 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
            
                  <tr>
                <td style="width: 50%;">Small Size A4</td> 
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
                
                <!-------------------Small Size A5--------------20+5/-->
                
               <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Small Size A5">
                <?php echo $pricetagA5 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
            
                  <tr>
                <td style="width: 50%;">Small Size A5</td> 
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
                
            <section>
            <address>
            If you wish to commission Fergal to do a drawing or painting then please feel free to E mail him with a digital photograph of your subject matter. 
            <br>
            Call 0877914975 or
            <a href="mailto:odeairishart@gmail.com">odeairishart@gmail.com</a>
            </address>
            <br>
            </section>
        
            </div>

prakycznie juz jest latwiej bo musze zmieniac tylko ten jeden plik
ale pomyslalem jak juz php te dlaczego nie pojsc na calosc, ale jak widac nie bangla

taka informacje znalazlem



There are two ways to solve this.
1. All of the files need to be placed where the index.php is.
OR
2. Open up your index.php file and look for line 25 or line 24, there should be a directory written there, change it to: /home/includes or wherever your includes and variables are located.

This should solve the problem.


ale i tak nie dziala

Kod:

<?php
$heading='O`Dea Irish Art';
$A1='150';
$A3='60';
$A4='38';
$A5='28';
$priceA1='<input type="hidden" name="amount" value="' .$A1. '">';
$priceA3='<input type="hidden" name="amount" value="' .$A3. '">';
$priceA4='<input type="hidden" name="amount" value="' .$A4. '">';
$priceA5='<input type="hidden" name="amount" value="' .$A5. '">';

?>

Kod:

<?php include('variables/variables.php'); ?>
<!---------#########PRICE LIST#######---------------------->

                
<div id="banner">
                <h1  class="" style='padding: 1em;'>PRICE LIST AND CHECKOUT, UNFRAMED:</h1>               
              <table>
              
              <tr>
                <th><b>Price List:</b></th>
                <th></th><th></th><th></th>
                <th></th>
                </tr>
                <tbody>                    
              <tr><td>A1  </td><td>Pencil Sketch Print :</td><td>€<?php echo $A1 ?></td><td>Large Size Unmnt/Unframed (80cm x 60 cm).</td><td><b></td></td></tr>
              <tr><td>A3  </td><td>Pencil Sketch Print :</td><td>€<?php echo $A3 ?></td><td>Medium Size Unmnt/Unframed (42cm x 29.7cm ).</td><td><b></td></td></tr>
              <tr><td>A3  </td><td>Painting Print:</td><td>€<?php echo $A3 ?></td><td>Medium Size Unmnt/Unframed.</td><td><b></td></td></tr>
                <tr><td>A4  </td><td>Pencil Pketch Print : </td><td>€<?php echo $A4 ?></td><td>Small Size Mounted/Unframed (21 cm x 29.7cm).</td><td><b></td></td></tr>                
                <tr><td>A5  </td><td>Pencil Pketch Print : </td><td>€<?php echo $A5 ?></td><td>Small Size Mounted/Unframed (21 cm x 14.8cm).</td><td><b></td></td></tr>                
                <tr>
                <th><b>IRELAND</b></th>
                <th></th><th>(Postage and packaging)</th><th></th><th></th>
                </tr>
                <tr><td>A1  </td><td>Large Size </td><td>€5</td><td></td><td><b></td></td></tr>
              <tr><td>A3, A4, A5  </td><td>Medium/Small Size </td><td>€5</td><td></td><td><b></td></td></tr>           
              <tr>
                <th>(Allow 5 working days)</th>
                <th></th><th></th><th></th>
                <th></th>
                <th></th>
                </tr>    
                
                <tr>
                <th><b>U.K</b></th>
                <th></th><th>(Postage and packaging)</th><th></th><th></th>
                </tr>
                <tr><td>A1  </td><td>Large Size </td><td>€6</td><td></td><td><b></td></td></tr>
              <tr><td>A3, A4, A5  </td><td>Medium/Small Size </td><td>€5</td><td></td><td><b></td></td></tr>
              <tr>
                <th>(Allow 7 working days)</th>
                <th></th><th></th><th></th>
                <th></th>
                </tr>       
                
                <tr>
                <th><b>Europe</b></th>
                <th></th><th>(Postage and packaging)</th><th></th><th></th>
                </tr>
                <tr><td>A1  </td><td>Large Size </td><td>€6</td><td></td><td><b></td></td></tr>
              <tr><td>A3, A4, A5  </td><td>Medium/Small Size </td><td>€5</td><td></td><td><b></td></td></tr>
              <tr>
                <th>(Allow 10 working days)</th>
                <th></th><th></th><th></th>
                <th></th>
                </tr>
                <th><b>U.S.A</b></th>
                <th></th><th>(Postage and packaging)</th><th></th><th></th>
                </tr>
                <tr><td>A1  </td><td>Large Size </td><td>€6</td><td></td><td><b></td></td></tr>
              <tr><td>A3, A4, A5  </td><td>Medium/Small Size </td><td>€5</td><td></td><td><b></td></td></tr>
              <tr>
                <th>(Allow 10 working days)</th>
                <th></th>
                <th></th>
                <th></th><th></th>                
                </tbody>       
              </table>
              <br><br>
              
              <!---*******PAYPAL IRELAND******--Pencil Sketch Large A1------------150+5/-->
              <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Pencil Sketch Large A1">
                <?php echo $priceA1 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
                <th><b>PAYPAL CHECKOUT IRELAND</b></br>please be sure you typing in correct number and title!!!</th>
                  <tr>
                <td style="width: 50%;">Pencil Sketch Large Size A1</td>
               <td>
                <input type="hidden" name="on0" value="name">Title</td>
                <td>
                <input type="text" name="os0" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
                
                
                <!---------------------Pencil Sketch Medium Size A3------------60+5/-->
              
              
              <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Pencil Sketch Medium A3">
                <?php echo $priceA3 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
            
                  <tr>
                <td style="width: 50%;">Pencil Sketch Medium Size A3</td>
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
            
                
                <!--------------------Painting Medium Size A3-------------60+5/-->
              
              
              <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Painting Medium Size A3">
                <?php echo $priceA3 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
                
                  <tr>
                <td style="width: 50%;">Painting Medium Size A3</td>
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
                
                    <!--------------------Small Size A4-------------30+5/-->
               
               <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Small Size A4">
                <?php echo $priceA4 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
            
                  <tr>
                <td style="width: 50%;">Small Size A4</td> 
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
                
                <!--------------------Pencil Sketch Small Size A5-------------20/-->
                
               <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Small Size A5">
                <?php echo $priceA5 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
            
                  <tr>
                <td style="width: 50%;">Small Size A5</td> 
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
                
                <br><br>
                
                
                <!---*******PAYPAL OTHER******Pencil Sketch Large A1------------150+6/-->
                 
                 
              <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Pencil Sketch Large A1">
                <?php echo $priceA1 ?>
                <input type="hidden" name="shipping" value="6.00">
                <table>
                <th><b>PAYPAL CHECKOUT UK/EUROPE/U.S.A</b></br>please be sure you typing in correct number and title!!!</th>
                  <tr>
                  
                <td style="width: 50%;">Pencil Sketch Large Size A1</td>
               <td>
                <input type="hidden" name="on0" value="name">Title</td>
                <td>
                <input type="text" name="os0" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
                
                
                <!-----------------------Pencil Sketch Medium Size A3----------60+5/-->              
              
              
              <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Pencil Sketch Medium Size A3">
                <?php echo $priceA3 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
            
                  <tr>
                <td style="width: 50%;">Pencil Sketch Medium Size A3</td> 
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
            
                
                <!--------------------Painting Medium Size A3-------------60+5/-->
              
              
              <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Painting Medium Size A3">
                <?php echo $priceA3 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
                
                  <tr>
                <td style="width: 50%;">Painting Medium Size A3</td>
 
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>

                <!--------------------Small Size A4-------------20+5/-->
               
               <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Small Size A4">
                <?php echo $priceA4 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
            
                  <tr>
                <td style="width: 50%;">Small Size A4</td> 
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
                
                <!-------------------Small Size A5--------------20+5/-->
                
               <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                <input type="hidden" name="cmd" value="_xclick">
                <input type="hidden" name="business" value="odeairishart@gmail.com">
                <input type="hidden" name="currency_code" value="EUR">
                <input type="hidden" name="item_name" value="Small Size A5">
                <?php echo $priceA5 ?>
                <input type="hidden" name="shipping" value="5.00">
                <table>
            
                  <tr>
                <td style="width: 50%;">Small Size A5</td> 
               <td>
                <input type="hidden" name="on1" value="name">Title</td>
                <td>
                <input type="text" name="os1" maxlength="100"></td>
                <td>
                <input type="image" src="http://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"></td>
                 </tr>
                </table>
                </form>
                
            <section>
            <address>
            If you wish to commission Fergal to do a drawing or painting then please feel free to E mail him with a digital photograph of your subject matter. 
            <br>
            Call 0877914975 or
            <a href="mailto:odeairishart@gmail.com">odeairishart@gmail.com</a>
            </address>
            <br>
            </section>
        
            </div>

Dziala wlasnie w takiej a nie innej postaci.

Ostatnio edytowany przez pink (2014-02-16 18:54:19)


T430 think-box 4.9-custom x86_64 Intel(R) Core(TM) i5-3230M CPU @ 2.60GHz GenuineIntel GNU/Linux
"Doktor plama i maharadża są pod złotym leszczem." "Człowieka od zwierzęcia odróżnia ciekawość świata. Patrze słucham i wyciągam wnioski."
http://przemyslawmamon.com/
https://www.behance.net/przemyslawmamon

Offline

 

Stopka forum

Powered by PunBB
© Copyright 2002–2005 Rickard Andersson
To nie jest tylko forum, to nasza mała ojczyzna ;-)

[ Generated in 0.010 seconds, 9 queries executed ]

Informacje debugowania

Time (s) Query
0.00011 SET CHARSET latin2
0.00004 SET NAMES latin2
0.00108 SELECT u.*, g.*, o.logged FROM punbb_users AS u INNER JOIN punbb_groups AS g ON u.group_id=g.g_id LEFT JOIN punbb_online AS o ON o.ident='3.147.85.183' WHERE u.id=1
0.00098 UPDATE punbb_online SET logged=1715937136 WHERE ident='3.147.85.183'
0.00039 SELECT * FROM punbb_online WHERE logged<1715936836
0.00059 SELECT t.subject, t.closed, t.num_replies, t.sticky, f.id AS forum_id, f.forum_name, f.moderators, fp.post_replies, 0 FROM punbb_topics AS t INNER JOIN punbb_forums AS f ON f.id=t.forum_id LEFT JOIN punbb_forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id=3) WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND t.id=25261 AND t.moved_to IS NULL
0.00009 SELECT search_for, replace_with FROM punbb_censoring
0.00301 SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.registered, u.admin_note, p.id, p.poster AS username, p.poster_id, p.poster_ip, p.poster_email, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by, g.g_id, g.g_user_title, o.user_id AS is_online FROM punbb_posts AS p INNER JOIN punbb_users AS u ON u.id=p.poster_id INNER JOIN punbb_groups AS g ON g.g_id=u.group_id LEFT JOIN punbb_online AS o ON (o.user_id=u.id AND o.user_id!=1 AND o.idle=0) WHERE p.topic_id=25261 ORDER BY p.id LIMIT 0,25
0.00100 UPDATE punbb_topics SET num_views=num_views+1 WHERE id=25261
Total query time: 0.00729 s