¿Como están?, espero que bien.
Tengo un script el cual envia correo cada vez que un usuario compra un articulo, el otro dia queria agregar al correo el teléfono y lo que hice fue ir al textbox (en html) de su perfil y revisar el código el cual era el siguiente:
Código HTML:
<input type="text" name="phone" value="+163xxxx" class="input" style="width:275px">
Código PHP:
'{{phone}}' => fetch_user('phone', intval($buyer_id)),
'{{phone_seller}}' => fetch_user('phone', intval($seller_id)),
MI PROBLEMA ES EL SIGUIENTE:
Necesito que este código HTML:
Código HTML:
<input class="input" type="text" id="vqMHUaQNzVjCpk" name="custom1[1][vqMHUaQNzVjCpk]" value="" style="font-family: verdana">
Código PHP:
'{{custom1}}' => fetch_user('vqMHUaQNzVjCpk', intval($seller_id)),
'{{custom}}' => fetch_user('vqMHUaQNzVjCpk', intval($buyer_id)),
'{{customseller1}}' => fetch_user('custom1[1][vqMHUaQNzVjCpk]', intval($buyer_id)),
'{{eOPSkyvkbWtUlX}}' => fetch_user('custom1[1][vqMHUaQNzVjCpk]', intval($seller_id)),
Es que esa variable id= no se como hacer con ella.
Le agradecería mil que me ayudaran, gracias.