Request New Branch in Forum to share TIPS and Advises October 09, 2019, 12:33:53 PM I think PHP Rad developers should put a topic called Tips and Quick Codes, although the speed of response is not what we desire, I think the way to grow in the community is by sharing useful codes and tips, here I share mine.1St TipIf u need autoincrement on a Adding page u will use this"SELECT `id`+1 FROM `table` ORDER BY `id` DESC LIMIT 1"When u choose a new one the ID add in one , may be other field to check a count2nd TipWhen u need join Last Name and Name on a List u can use this"SELECT CONCAT(lastname' ',name) AS value FROM employees"Below is attached an image where u need load thisGoods codes!! Quote Selected 2 Likes
Re: Request New Branch in Forum to share TIPS and Advises Reply #1 – June 26, 2021, 03:25:41 AM Hi, where should I add the sql to concatenate surnames and first names? should i create a new field? Quote Selected
Re: Request New Branch in Forum to share TIPS and Advises Reply #2 – June 28, 2021, 02:04:42 PM Hi, u need a new Field with enough space to allow inpĆ¹t Lastname and Name, in the options of the field u need select ( (*) Select Option) and put the SQL String into it. Quote Selected