Burada Sinirli php acemi ...
Ben abp.php için ab.php dan BillTo veya shipto ya bir "tür" değer geçmek için çalışıyorum.
ab.php pasajı:
<?php
echo '<a href="' . tep_href_link(FILENAME_ABP, 'edit=' . $bill_address['address_book_id'] . '&type=billto', 'SSL') . '">' .
tep_image_button('small_edit.gif', SMALL_IMAGE_BUTTON_EDIT) .
'</a>';
?>
This does add the &type=billto to the end of the url. It looks like this: www.mydomain.com/abp.php?edit=408&type=billto&id=4a6524d
abp.php pasajı:
if ($HTTP_GET_VARS['type'] == 'billto') {
then it does a db update...
Güncelleme yapılmaz çünkü eğer (ben ne söyleyebilirim) olsa döndürür false.
Ben de $ yerine HTTP_GET_VARS dolar _GET denedim.
Abp.php kod kullanıcı düğmeyi tıklattığında kadar sonra idam değil, çünkü değerini kontrol etmek yankılanırken kullanamazsınız, ama ben url türünü görebilirsiniz, böylece yürütme değil neden emin değilim .
Gerçekten bazı yön kullanabilirsiniz ... ben değiştirmek gerekiyor, ya da daha fazla sorun giderme için nasıl hatta sadece öneri olsun. Ben şu anda büyük bir öğrenme eğrisi ortasındayım. Teşekkürler!
edit: Sorry, I just realized I left out that after the db update the user goes back to ab.php. So the whole workflow is this:
User goes to ab.php. User clicks link to go to abp.php. User changes data on abp.php. User clicks button on abp.php. Update to db is executed and user is sent back to ab.php.