Просмотр сообщений

В этом разделе можно просмотреть все сообщения, сделанные этим пользователем.


Сообщения - marksmith991

Страницы: [1]
1
Корзина / Re: Как INSERT&SELECT в одном запросе?
« : 22 Января 2024, 07:39:35 »
LAST_INSERT_ID(). This function returns the AUTO_INCREMENT value of the last row that was inserted into a table with an AUTO_INCREMENT column.

How you might modify your process:

1. Insert Data
2. Get Last Inserted ID
3. Update File Name

I hope this will help you.

2
JavaScript & JScript / Re: Как проверить checkbox
« : 19 Января 2024, 12:52:36 »
function proverka()
{
if (forma.cbx.checked==false)
alert("нету галки");
}
</script>
<form name="forma">
<input type=checkbox name=cbx>
<input type=button value=Проверить onclick="proverka()">
</form>

I also faced the same probelm. Thanks for the solution.

Страницы: [1]