phpLens
 home  products examples manual  faq support forum  contact news  login store

More Examples:   View Source:   searchInEditNew

Free Download

This demo allows you to enter complaint records for products you are supporting. You can perform a search in the both the EDIT/NEW record forms for the product the customer is complaining about. Hint: search on R in the "prodname" field below.

  PHPLens
E New Srch
(E) (e)id (e)prodname (e)custname (e)telephone (e)Complaint
1
24291
ViagraViagra83937173700http://viagraexpresspharmacy.com zimax sildenafil <a href="http://viagraexpresspharmacy.com">Sildenafil</a> free viagra pill best viagra alternative
2
24293
ViagraViagra76772776681http://viagraexpresspharmacy.com high blood pressure viagra <a href="http://viagraexpresspharmacy.com">Viagra Pharmacy</a> viagra women effects cheapest viagra prices
3
24292
ViagraViagra91393721953http://viagraexpresspharmacy.com viagra low cost <a href="http://viagraexpresspharmacy.com">Buy Viagra Online</a> what happens when women take viagra free trial viagra
4
24294
ViagraViagra80676397921http://viagraexpresspharmacy.com viagra soft <a href="http://viagraexpresspharmacy.com">Generic Viagra</a> viagra online cheap viagra horror stories
5
24295
ViagraViagra47103758762http://viagraexpresspharmacy.com online viagra prescriptions <a href="http://viagraexpresspharmacy.com">Buy cheap generic viagra pharmacy</a> legal buy viagra online women use viagra
6
24286
ViagraViagra43807105038http://viagraexpresspharmacy.com does viagra expire <a href="http://viagraexpresspharmacy.com">Viagra Online</a> viagra brands 50mg generic viagra
7
24287
ViagraViagra90690291448http://viagraexpresspharmacy.com safety generic viagra <a href="http://viagraexpresspharmacy.com">Viagra Online</a> best prices on brand viagra brand name viagra online sales
8
24289
ViagraViagra82012620298http://viagraexpresspharmacy.com viagra original use <a href="http://viagraexpresspharmacy.com">Buy Sildenafil</a> viagra use by women viagra without a prescription
9
24290
ViagraViagra89743422500http://viagraexpresspharmacy.com how do i get viagra without a prescription <a href="http://viagraexpresspharmacy.com">Order Viagra Generic Fast</a> viagra online canadian pharmacy organic viagra
10
24288
ViagraViagra70681528027http://viagraexpresspharmacy.com how to get viagra prescription <a href="http://viagraexpresspharmacy.com">Order Viagra Generic Fast</a> buying cheap viagra viagra for free
(E) Edit Record     
(e)productid 817951 
(e)prodname
(e)custname
(e)telephone
(e)address1
(e)address2
(e)Complaint
 
  PHPLens (Page 1)  
E New Srch

Notes

This feature is available since 3.1.

This demo show to create complaint records, retrieving the product id and product name using a search form built into the NEW/EDIT record form. This is particularly useful when we have a 100,000 product table and we don't want to pull every product record in a normal lookup, but allow the user to enter the first few characters of the product name, then we perform a search.

The key property is:

$lens->searchInEditNew = 
"PRODNAME^select concat(productname,' (',productid,')'),productname,productid,productid 
	from products where productname like '{#}%'^prodname^productid^>1";
		

There are two modes for searchInEditNew. The first is when no lookupLens is defined as in this example. The second is discussed in ex920.

The searchInEditNew generates the search field. The key to understanding this is the prodname^productid list above, which defines the fields that receive searched values.

Now look at the SQL SELECT statement. The {#} in the SQL is substituted with what the user entered in the input field.

The SQL statement retrieves 3 fields, the first being what we show the end-user in the popup.

The 2nd is what we store in the prodname, the first field of the list prodname^productid.

The 3rd field of the SQL is stored in productlist, the second field of the list prodname^productid.

Now if 3 items were defined in the above list, say prodname^productid^more3 then the SQL statement would have had 4 fields, the 4th field storing into more3.

The >1 in the property means the field requires at least 1 character before a search can occur.

Lastly, this example has the details being displayed below the grid, using $lens->showRecNo = 5;

email: contact#phplens.com (change # to @)     telephone (malaysia): 60-3-7947 2888     fax (malaysia): 60-3-7947 2800