« Home « Chủ đề lập trình flash

Chủ đề : lập trình flash


Có 60+ tài liệu thuộc chủ đề "lập trình flash"

Web Publishing with PHP and FileMaker 9- P1

tailieu.vn

Web Publishing with. Web Publishing with PHP and FileMaker® 9 Copyright © 2008 by Sams Publishing. No part of this book shall be reproduced, stored in a retrieval system, or transmitted by any means, electronic, mechanical, photocopying, recording, or otherwise, without written permission from the publisher. No patent liability is assumed with respect to the use of the information contained...

Web Publishing with PHP and FileMaker 9- P2

tailieu.vn

To make sure we’re speaking the same language, I want to define my use of the term web publishing:. This is a very narrow definition of the term, but it’s all I am able to cover in this book. And, it’s plenty to get you started on the web.. The someone else’s computer, which I referred to earlier, is what...

Web Publishing with PHP and FileMaker 9- P3

tailieu.vn

The second and fourth lines of the example are the opening and closing tags for the head element. Here is the title element:. We looked at the structure of the title element already, but I didn’t tell you what it was for. The content of the title element is the text that appears in the title bar of the web...

Web Publishing with PHP and FileMaker 9- P4

tailieu.vn

echo “Yep, it’s her!”;. echo “Nope, it’s not her!”;. Take special note of the fact that the equivalency operator in the expression is a double equal sign. It would reassign “Susannah” to the $name variable and the if statement would evaluate to TRUE every time. echo “Hi Lily!”;. echo “Hi Matt!”;. echo “Who’s there?”;. The else block at the end...

Web Publishing with PHP and FileMaker 9- P5

tailieu.vn

FIGURE 4.1 The FileMaker Quick Start dialog box gives you easy access to a wide range of resources.. Click on the Create Database icon on the left side of the FileMaker Quick Start menu, if it is not already active.. Click the OK button.. FileMaker Pro will now create a file named Product Catalog.fp7 on your desktop and present you...

Web Publishing with PHP and FileMaker 9- P6

tailieu.vn

The File Options dialog box opens.. We want the file to ask for an account name and password whenever it is opened, so uncheck the Log In Using check box (see Figure 4.17). When you are done, click the OK button.. FIGURE 4.17 The completed File Options dialog box for the Product Catalog file should have everything deactivated.. And with...

Web Publishing with PHP and FileMaker 9- P7

tailieu.vn

FIGURE 5.14 Success! The Product Catalog file was uploaded and is showing an OK status in the Upload Databases Summary dialog box.. PHP Site Assistant. New to FileMaker Server 9 is a snazzy little tool called the PHP Site Assistant (PHPSA). These pages are normal text documents that you can manually customize to your needs.. Launching the PHP Site Assistant....

Web Publishing with PHP and FileMaker 9- P8

tailieu.vn

Write operations are covered in the next chapter.. I left them out until now because they are closely related to the use of FileMaker.php itself. include (‘FileMaker.php’);. ‘<td>’.$record->getField(‘ID’).’</td>’;. ‘<td>’.$record->getField(‘Name’).’</td>’;. ‘<td>’.$record->getField(‘Model Number’).’</td>’;. ‘<td>’.$record->getField(‘Price’).’</td>’;. ‘<td>’.$record->getField(‘Created At’).’</td>’;. ‘<td>’.$record->getField(‘Created By’).’</td>’;. <table border=”1”>. <th>ID</th>. <th>Name</th>. <th>Model Number</th>. <th>Price</th>. <th>Created At</th>. <th>Created By</th>. …the PHP parser will replace any instance of FM_HOST with the value 127.0.0.1...

Web Publishing with PHP and FileMaker 9- P9

tailieu.vn

include (‘FileMaker.php’);. $id = $record->getField(‘ID’);. $name = $record->getField(‘Name’);. $model_number = $record->getField(‘Model Number’);. $price = $record->getField(‘Price’);. $created_at = $record->getField(‘Created At’);. $created_by = $record->getField(‘Created By’);. <table border=”1”>. <th>ID</th>. <td><?php echo $id. ?></td>. <th>Name</th>. <td><?php echo $name. <th>Model Number</th>. <td><?php echo $model_number. <th>Price</th>. <td><?php echo $price. <th>Created At</th>. <td><?php echo $created_at. <th>Created By</th>. <td><?php echo $created_by. Use the getRecordById() method of the FileMaker...

Web Publishing with PHP and FileMaker 9- P10

tailieu.vn

$page_content = ‘<p>Action cancelled. Record was not deleted.</p>’;. ‘<p><a href=”07_03.php”>Return to list view</a></p>’;. ‘<form action=”07_04.php” method=”post”>’;. ‘<input type=”hidden” name=”recid” value=”’.$_REQUEST[‘recid’]. ‘<p>’;. ‘<input type=”submit” name=”action” value=”Delete” />’;. ‘<input type=”submit” name=”action” value=”Cancel” />’;. ‘</p>’;. Basically, I am just loading a bunch of HTML into the $page_content variable in prepara- tion for output in the HTML template section of the page. If you...

Web Publishing with PHP and FileMaker 9- P11

tailieu.vn

Do that now so you can view all of the Product fields, as shown in Figure 8.3.. Now that you can see all the fields in both TOs, we are going to link the ID field in the Product table to the ID Product field in the Inventory table. Position your mouse pointer over the ID field in the Product...

Web Publishing with PHP and FileMaker 9- P12

tailieu.vn

$portal_html. <table border=”1”>. <th>ID</th>. <td><?php echo $id. ?></td>. <th>Name</th>. <td><?php echo $name. <th>Model Number</th>. <td><?php echo $model_number. <th>Price</th>. <td><?php echo $price. <th>Created At</th>. <td><?php echo $created_at. <th>Created By</th>. <td><?php echo $created_by. <?php echo $portal_html. <?php. $new_row = $record->newRelatedRecord(‘Inventory’);. $id = $record->getField(‘ID’);. $name = $record->getField(‘Name’);. $model_number = $record->getField(‘Model Number’);. $price = $record->getField(‘Price’);. $created_at = $record->getField(‘Created At’);. $created_by = $record->getField(‘Created By’);. $portal_records...

Web Publishing with PHP and FileMaker 9- P13

tailieu.vn

FIGURE 9.2 The Thumbnail field needs to be added to the Product layout to access the image online.. You can see these options by entering Browse mode, clicking in the Thumbnail field and inspecting the Insert menu options. For our purposes, I’m going to limit the conversation here to the Picture option.. To make things more complicated (or more powerful,...

Web Publishing with PHP and FileMaker 9- P14

tailieu.vn

Build the URL to the new product image:. Use the newEditCommand() method to create an edit object pointed at the Product layout for this product ID:. Use the setField() method of the edit object to indicate that the Thumbnail URL field should take the value from the $url variable:. Execute the edit command to save the update to the database:....

Web Publishing with PHP and FileMaker 9- P15

tailieu.vn

Then, I use the getFoundCount() method of the result object to determine how many records were found:. $page_content.= ‘<p>Displaying. $page_content.= ‘<p>Your search for. Store the array of record objects in the $records variable using the getRecords() method of the result object:. $page_content.= ‘<table border=”1”>’;. $page_content.= ‘<tr>’;. $page_content.= ‘<th>&nbsp;</th>’;. Loop through the array of field objects to draw the header row,...

Web Publishing with PHP and FileMaker 9- P16

tailieu.vn

When called in to optimize a painfully slow FileMaker website, I often find that the devel- oper has inserted a call to the database inside of a foreach loop. An example case might be that the developer requests a found set of products, and loops through them to output the data to the browser. Naturally, if you have 100 prod-...

Web Publishing with PHP and FileMaker 9- P17

tailieu.vn

addFindCriterion method of FileMaker_Command_Find. FileMaker_Command_Add. FileMaker_Command_CompoundFind . FileMaker_Command_Delete . FileMaker_Command_Duplicate . FileMaker_Command_Edit . FileMaker_Command_Find . FileMaker_Command_FindAn y . FileMaker_Command_FindAll . FileMaker_Command_FindRequest . FileMaker_Command_PerformScript . FileMaker_Error. FileMaker_Field. FileMaker_Layout . FileMaker_Record . TABLE D.1 FileMaker PHP API Reference. FileMaker getRecordById(LayoutName, RecordId) FileMaker_Record or FileMaker_Error. FileMaker newAddCommand(LayoutName[, FieldValues]) FileMaker_Command_Add. FileMaker newCompoundFindCommand(LayoutName) FileMaker_Command_CompoundFind FileMaker newDeleteCommand(LayoutName, RecordId) FileMaker_Command_Delete FileMaker newDuplicateCommand(LayoutName, RecordId) FileMaker_Command_Duplicate FileMaker newEditCommand(LayoutName, RecordId[,...

Web Publishing with PHP and FileMaker 9- P18

tailieu.vn

method, 234 isGlobal. altering related records in, 156-161 creating, 141-144. creating related records in, 150-155 viewing data, 146-150. linking domain names and IP addresses, 11 links, creating drill down links, 107-109 List view example (updating websites via lay-. method, 234 listFields. method, 234 listRelatedSets. method, 234 listValueLists. method, 234 newDeleteCommand. method, 234 newDuplicateCommand. method, 234 newEditCommand. method, 234 newFindCommand. method,...

Java Server Pages: A Code-Intensive Premium Reference- P1

tailieu.vn

Java Server Pages: A Code-Intensive Premium Reference. If your next project is JSP, learn from this book's example code, then bring the reference to work.. Code near the beginning serves to illustrate crash courses in servlets, JavaBeans, JDBC, and JSP concepts, while the rest of the coding section plunges straight into building a shopping cart, sending JavaMail, and much more....

Java Server Pages: A Code-Intensive Premium Reference- P2

tailieu.vn

<jsp:useBean>. The <jsp:useBean>. action associates an instance of a JavaBean defined with a given scope and ID, via a newly declared scripting variable of the same ID. <jsp:setProperty>. The <jsp:setProperty>. <jsp:getProperty>. The <jsp:getProperty>. action takes the value of the referenced bean instance's property, converts it to a java.lang.String, and places it into the implicit out object. <jsp:include>. The <jsp:include>. <jsp:include...