Questions tagged [generated-code]
231 questions
-1
votes
1 answer
what is the easiest way to generate Add,edit and delete of a table in a database
I always code add, edit and delete pages from scratch "I mean copy paste :)" for my tables, but man, it's boring and time consuming. isn't there an easy way to generate those pages and manipulate the configurations of their forms to suit my…

Saajid Akram
- 169
- 4
- 10
-2
votes
1 answer
Creating very specific Alpha-numeric Codes
So I know there are websites out there that do this for you, but not to the extent that I need. I want to be able to Create a 13 Digit Alpha Numeric code several times over, if possible have it spit out 1,000 codes at a time. However my problem is I…
-2
votes
1 answer
Php Generate random number without repeat
$C = $_POST['Cc'];
$X = $_POST['X'];
$CX = $_POST['Cc'] . $_POST['X'];
$NC = preg_replace_callback("/x/" ,function() {return rand(0,9);}, $CX);
$New = $NC ;
$NNew = str_repeat($New,10);
echo $NNew;
what's…

Ahmed Osama
- 3
- 8
-2
votes
1 answer
Generate picture and save it on server php
How to generate a picture of graph of the results of voting and how to save the image in my server host, to continue to use it. How can I do this?

Mister Black
- 21
- 5
-2
votes
1 answer
show EditText on condition
Right now I have an idea for a project and I would like to know if anyone can help me on the same logic.
As such I need to create or generate a number of EditText according to amount you enter, ie, to select or enter a number such as 5, show me 5…

Yoshi
- 19
- 6
-3
votes
2 answers
How Generate data to alphabet on MySQL table using PHP?
Hello i have tables like this :
Employee
EmployeeID EmployeeName
1234 Sooyoung
1235 Yoona
1236 Tiffany
1237 Hyoyeon
1238 Taeyeon
1239 Seohyun
1240 Sunny
1241 …

TARA
- 529
- 1
- 6
- 23