Jump to content

Recommended Posts

Let's say I want to construct some input fields using this for each loop :

foreach($_POST['test3'] as $key => $test3key){
    $test3 = $test3key;
    $test31 = $_POST['test31'][$key];
    $test32 = $_POST['test32'][$key];
    if (!empty($test3key) && !empty($test31) && !empty($test32)) {
// insert sql


}
}

The data for example is test3 = 0033, test31 = 1; test32 is 1,000

In this particular case, the test3 will get converted to just 33 in the database table column. The test3 column type in the database is text. I want to prevent the leading zero removal. How can I accomplish this?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.