PHP 5.4 upgrade and iDEAL page does not work
Autor: Rick De RooijRecently my internet provider upgraded php to version 5.4.
Now in the cart pages (in #step4) the final button to iDEAl is no longer displayed. Instead there is the following php text on screen:
<form action="http://mlsweetheart.nl/ideal_page.php" method="post"> <input type="hidden" name="price" value="20.300"> <input type="hidden" name="ordernumber" value="150222-LJ51"> <button>Ik betaal met iDEAL</button> </form>
This comes form the iDEAL-payment code in the cart, 'bestellingsbeheer' in the tab 'type' where I have put the following code:
<form action="http://mlsweetheart.nl/ideal_page.php" method="post">
<input type="hidden" name="price" value="[PRICE]">
<input type="hidden" name="ordernumber" value="[ORDER_NO]">
<button>Ik betaal met iDEAL</button>
</form>
What is going wrong here? Where has the button gone?
instead of < try < and instead of > try using > see if that change the result.
if this post is the correct answer, please mark this answer as correct answer.
------------------------------------------------------------
Good Luck
Autor
Thanx! That made the difference. Still I am not sure how this came in.
But it is solved now. Thank you very much.