Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Marcos Coelho2

Inserir código html no php

Recommended Posts

Boa tarde!

 

Eu nao sei nada de php por enquanto, programo em asp e asp.net mas estou desenvolvendo uma loja virtual em php e preciso de ajuda

tenho que inserir um codigo html mas o codigo eh todo em php

[code]<?php
/**
* @see Mage_Catalog_Block_Product_View
*/
$_product = $this->getProduct();
$_tierPrices = $this->getTierPrices();
$_finalPriceInclTax = $this->helper('tax')->getPrice($_product, $_product->getFinalPrice(), true);

/** @var $_catalogHelper Mage_Catalog_Helper_Data */
$_catalogHelper = Mage::helper('catalog');

$_weeeTaxAmount = Mage::helper('weee')->getAmountForDisplay($_product);
if (Mage::helper('weee')->typeOfDisplay($_product, array(1,2,4))) {
   $_weeeTaxAttributes = Mage::helper('weee')->getProductWeeeAttributesForDisplay($_product);
}

?>
<?php if (count($_tierPrices) > 0): ?>
   <ul class="<?php echo ($this->getInGrouped() ? 'tier-prices-grouped product-pricing-grouped' : 'tier-prices product-pricing'); ?>">
   <?php if ($this->getInGrouped()): ?>
       <?php $_tierPrices = $this->getTierPrices($_product); ?>
   <?php endif; ?>
   <?php Mage::helper('weee')->processTierPrices($_product, $_tierPrices); ?>
   <?php foreach ($_tierPrices as $_price): ?>
       <li>
       <?php if ($_catalogHelper->canApplyMsrp($_product)): ?>
           <?php if ($this->getInGrouped()): ?>
               <?php echo $this->__('Buy %1$s for', $_price['price_qty']) ?>:
           <?php else: ?>
               <?php echo $this->__('Buy %1$s', $_price['price_qty']) ?>
           <?php endif; ?>
       <?php else: ?>

       <?php if ($this->helper('tax')->displayBothPrices()): ?>
           <?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
               <?php echo $this->__('Buy %1$s for %2$s (%3$s incl. tax) each', $_price['price_qty'], $_price['formated_price_incl_weee_only'], $_price['formated_price_incl_weee']) ?>
           <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
                   <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
                   <?php if ($_weeeTaxAttributes): ?>
                   (<small>
                   <?php echo $this->__('%1$s incl tax.', $_price['formated_price_incl_weee']); ?>
                   <?php $separator = ' + '; foreach ($_weeeTaxAttributes as $_attribute): ?>
                       <?php echo $separator; ?>
                       <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
                   <?php endforeach; ?>
                   </small>)
                   <?php endif; ?>
                   <?php echo $this->__('each') ?>
           <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
                   <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
                   <?php if ($_weeeTaxAttributes): ?>
                   (<small>
                   <?php echo $this->__('%1$s incl tax.', $_price['formated_price_incl_weee']); ?>
                   <?php $separator = ' + '; foreach ($_weeeTaxAttributes as $_attribute): ?>
                       <?php echo $separator; ?>
                       <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()+$_attribute->getTaxAmount()); ?>
                   <?php endforeach; ?>
                   </small>)
                   <?php endif; ?>
                   <?php echo $this->__('each') ?>
           <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
                   <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price']); ?>
                   <?php if ($_weeeTaxAttributes): ?>
                   (<small>
                   <?php foreach ($_weeeTaxAttributes as $_attribute): ?>
                       <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
                   <?php endforeach; ?>
                   <?php echo $this->__('Total incl. Tax: %1$s', $_price['formated_price_incl_weee']); ?>
                   </small>)
                   <?php endif; ?>
                   <?php echo $this->__('each') ?>
           <?php else: ?>
                   <?php echo $this->__('Buy %1$s for %2$s (%3$s incl. tax) each', $_price['price_qty'], $_price['formated_price'], $_price['formated_price_incl_tax']) ?>
           <?php endif; ?>
       <?php else: ?>
           <?php if ($this->helper('tax')->displayPriceIncludingTax()): ?>
               <?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
                       <?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_weee']) ?>
               <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
                       <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee']); ?>
                       <?php if ($_weeeTaxAttributes): ?>
                       (<small>
                       <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
                           <?php echo $separator; ?>
                           <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
                       <?php $separator = ' + '; endforeach; ?>
                       </small>)
                       <?php endif; ?>
                       <?php echo $this->__('each') ?>
               <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
                       <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee']); ?>
                       <?php if ($_weeeTaxAttributes): ?>
                       (<small>
                       <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
                           <?php echo $separator; ?>
                           <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()+$_attribute->getTaxAmount()); ?>
                       <?php $separator = ' + '; endforeach; ?>
                       </small>)
                       <?php endif; ?>
                       <?php echo $this->__('each') ?>
               <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
                       <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_tax']); ?>
                       <?php if ($_weeeTaxAttributes): ?>
                       (<small>
                       <?php foreach ($_weeeTaxAttributes as $_attribute): ?>
                           <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
                       <?php endforeach; ?>
                       <?php echo $this->__('Total incl. Tax: %1$s', $_price['formated_price_incl_weee']); ?>
                       </small>)
                       <?php endif; ?>
                       <?php echo $this->__('each') ?>
               <?php else: ?>
                       <?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_tax']) ?>
               <?php endif; ?>
           <?php else: ?>
               <?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
                       <?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_weee_only']) ?>
               <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
                       <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
                       <?php if ($_weeeTaxAttributes): ?>
                       (<small>
                       <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
                           <?php echo $separator; ?>
                           <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
                       <?php $separator = ' + '; endforeach; ?>
                       </small>)
                       <?php endif; ?>
                       <?php echo $this->__('each') ?>
               <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
                       <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
                       <?php if ($_weeeTaxAttributes): ?>
                       (<small>
                       <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
                           <?php echo $separator; ?>
                           <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()+$_attribute->getTaxAmount()); ?>
                       <?php $separator = ' + '; endforeach; ?>
                       </small>)
                       <?php endif; ?>
                       <?php echo $this->__('each') ?>
               <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
                       <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price']); ?>
                       <?php if ($_weeeTaxAttributes): ?>
                       (<small>
                       <?php foreach ($_weeeTaxAttributes as $_attribute): ?>
                           <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
                       <?php endforeach; ?>
                       <?php echo $this->__('Total incl. Tax: %1$s', $_price['formated_price_incl_weee_only']); ?>
                       </small>)
                       <?php endif; ?>
                       <?php echo $this->__('each') ?>
               <?php else: ?>
                       <?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price']) ?>
               <?php endif; ?>
           <?php endif; ?>
       <?php endif; ?>

       <?php endif; // Can apply MSRP ?>

       <?php if (!$this->getInGrouped()): ?>
           <?php if(($_product->getPrice() == $_product->getFinalPrice() && $_product->getPrice() > $_price['price'])
           || ($_product->getPrice() != $_product->getFinalPrice() &&  $_product->getFinalPrice() > $_price['price'])): ?>
               <?php echo $this->__('and') ?> <strong class="benefit"><?php echo $this->__('save')?> <?php echo $_price['savePercent']?>%
           <?php endif ?></strong>
       <?php endif; ?>

       <?php if ($_catalogHelper->isShowPriceOnGesture($_product)):?>
           <?php $popupId = 'msrp-popup-' . $_product->getId() . $this->helper('core')->getRandomString(20); ?>
           <a href="#" id="<?php echo($popupId);?>"><?php echo $this->__('Click for price'); ?></a>
           <script type="text/javascript">
           <?php if (!$this->getInGrouped()): ?>
               var newLink = {
                   url: "<?php echo $this->getAddToCartUrl($_product, array('qty' => $_price['price_qty'])); ?>",
                   qty: "<?php echo $_price['price_qty']?>"
               };
           <?php else: ?>
               var newLink = {
                   url: "<?php echo $this->getAddToCartUrl($_product, array('qty' => $_price['price_qty'])); ?>",
                   notUseForm: true
               };
           <?php endif ?>
               Catalog.Map.addHelpLink(
                   $('<?php echo $popupId ?>'),
                   "<?php echo $_product->getName() ?>",
                   <?php echo json_encode($_price['real_price_html']) ?>,
                   "<?php echo $this->helper('core')->currency($_product->getMsrp(),true,false) ?>",
                   newLink
               );
           </script>
       <?php else: ?>
           <span class="msrp-price-hide-message">
               <?php echo $_catalogHelper->getMsrpPriceMessage($_product) ?>
           </span>
       <?php endif; ?>


       </li>

   <?php endforeach ?>
   </ul>
<?php endif;?>

[/code]

 

Quero inserir esse código html no codigo que coloquei acima em php

 

<div class="freegift_header"><h5>Escolha seu brinde</h5></div>

<div class="freegift_container clearer">
<ul id="freegift" >
		<li>

					<a class="product-image" title="" onclick="selectGift(this,'1125')" style="cursor: pointer;"><img src="http://l.madrugaosuplementos.com.br/media/catalog/product/cache/2/small_image/75x/9df78eab33525d08d6e5fb8d27136e95/c/r/creatina_300g_3d_final_c_pia.jpg" width="75" height="75" alt="" /></a>          	
       	<h2 class="product-name">Creatina Monohydrate 100% Pure (300g) Milly </h2>                    
     </li>		
		<li>
					<a class="product-image" title="" onclick="selectGift(this,'116')" style="cursor: pointer;"><img src="http://l.madrugaosuplementos.com.br/media/catalog/product/cache/2/small_image/75x/9df78eab33525d08d6e5fb8d27136e95/m/u/multi.jpg" width="75" height="75" alt="" /></a>          	
       	<h2 class="product-name">Multicomplex (90caps) Body Action</h2>                    
     </li>		
		<li>

					<a class="product-image" title="" onclick="selectGift(this,'97')" style="cursor: pointer;"><img src="http://l.madrugaosuplementos.com.br/media/catalog/product/cache/2/small_image/75x/9df78eab33525d08d6e5fb8d27136e95/b/c/bcaa100cps_site_4.jpg" width="75" height="75" alt="" /></a>          	
       	<h2 class="product-name">BCAA 2400 (100caps) Body Action</h2>                    
     </li>		
		<li>

					<a class="product-image" title="" onclick="selectGift(this,'106')" style="cursor: pointer;"><img src="http://l.madrugaosuplementos.com.br/media/catalog/product/cache/2/small_image/75x/9df78eab33525d08d6e5fb8d27136e95/c/o/coq_gif_2.gif" width="75" height="75" alt="" /></a>          	
       	<h2 class="product-name">Coqueteleira Top (750ml) </h2>                    
     </li>		

</ul>
<div style="clear: both;"></div>
</div>

 

Espero que possam me ajudar

Compartilhar este post


Link para o post
Compartilhar em outros sites
pra q tanto abre e fecha tag php? isso consome memoria...utilize o codigo html entre aspas simples...

Na verdade, é justamente o contrário, fazendo isso, economiza-se memória.

O código fora das tags PHP é ignorado pelo interpretador.

 

Para fazer o que deseja, basta colocar:

?>
Código HTML aqui
<?php

no local desejado.

Compartilhar este post


Link para o post
Compartilhar em outros sites
ou pode ser assim:

echo "<taghtml>";

 

Se o código HTML for meio extenso, fazer dessa forma é desaconselhável, pois gasta mais recursos do servidor.

 

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.