Changeset 25 for trunk/Meet.php
- Timestamp:
- Dec 26, 2018, 11:13:00 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Meet.php
r24 r25 350 350 if ($DbResult->num_rows == 0) 351 351 { 352 if ($this->Age == '') $Age = null; 353 else $Age = $this->Age; 354 if ($this->Height == '') $Height = null; 355 else $Height = $this->Height; 356 if ($this->Weight == '') $Weight = null; 357 else $Weight = $this->Weight; 352 358 $this->Database->insert('MeetItem', array( 353 359 'Message' => $this->Message, 354 360 'Date' => TimeToMysqlDate($this->Date), 355 361 'Gender' => $this->Gender, 356 'Age' => $ this->Age,362 'Age' => $Age, 357 363 'Email' => $this->Email, 358 364 'Phone' => $this->Phone, 359 365 'Name' => $this->Name, 360 'Height' => $ this->Height,361 'Weight' => $ this->Weight,366 'Height' => $Height, 367 'Weight' => $Weight, 362 368 'Location' => $this->Location, 363 369 'Source' => $this->Source,
Note:
See TracChangeset
for help on using the changeset viewer.