1153万例文収録!

「index.php」に関連した英語例文の一覧と使い方(2ページ目) - Weblio英語例文検索


小窓モード

プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > index.phpに関連した英語例文

セーフサーチ:オン

不適切な検索結果を除外する

不適切な検索結果を除外しない

セーフサーチについて

index.phpを含む例文一覧と使い方

該当件数 : 66



例文

Entering the user's name and password in an HTML input form and submitting the data for validation to the index.php page. 例文帳に追加

ユーザーの名前とパスワードを HTML 入力フォームに入力し、検査のためのデータを index.php ページに送る - NetBeans

Presently, the main index.php page of your application always displays the entire logon and showWishList forms. 例文帳に追加

現時点で、アプリケーションのメインの index.php ページには、常にログオンおよび showWishList フォームの全体が表示されます。 - NetBeans

The NewPHPProject tree appears in the Projects window and the project's index.php file opens in the editor and in the Navigator window. 例文帳に追加

「プロジェクト」ウィンドウに「NewPHPProject」ツリーが表示され、プロジェクトの index.php ファイルがエディタおよび「ナビゲータ」ウィンドウで開きます。 - NetBeans

The selection criterion is the name received from the index.php as user.The syntax of a SELECT SQL statement can be briefly described as follows: 例文帳に追加

選択の基準は、index.php から「user」として受け取った名前です。 次に、SQL 文「SELECT」の構文を簡単に説明します。 - NetBeans

例文

This data is transferred from index.php where the name of the wish list owner Tom was entered in the text field user. 例文帳に追加

このデータは、テキストフィールド「user」に、ウィッシュリストの所有者である Tom の名前が入力されている index.php から転送されます。 - NetBeans


例文

Adding a Link to Start Creating a New Wisher Enter the following code block into the body of index.php: Still don't have a wish list?! a href=createNewWisher.phpCreate now/a 例文帳に追加

新規ウィッシャーの作成を開始するリンクの追加 index.php の本文に次のコードブロックを入力します。 Still don't have a wish list?! a href=createNewWisher.phpCreate now/a - NetBeans

To check that the functionality is implemented correctly, run the editWishList.php file.The expected result is that the index.php page opens. 例文帳に追加

機能が正しく実装されたことを確認するには、editWishList.php ファイルを実行します。 期待する結果は、index.php ページが開くことです。 - NetBeans

If the check fails, which means that the user is not logged on, redirects the application to the front index.php page and cancels the PHP processing. 例文帳に追加

確認に失敗した場合、つまりユーザーがログオンしていない場合、最初の index.php ページにアプリケーションがリダイレクトされ、PHP の処理が取り消される。 - NetBeans

Returning to the Front index.php Page The user should be able to return to the front page of the application at ny time by pressing a button. 例文帳に追加

最初の index.php ページへの復帰 ボタンを押すことによって、いつでもユーザーがアプリケーションの最初のページに戻ることができるようにします。 - NetBeans

例文

Open index.php in the editor and type in the below code for the second row of the HTML table you previously created.trtd id=auto-row colspan=2table id=complete-table /td//trThe second row of the table contains another HTML table.例文帳に追加

index.php をエディタで開き、前に作成した HTML 表の 2 行目として次のコードを入力します。 trtd id=auto-row colspan=2table id=complete-table /td//tr表の 2 番目の行は、別の HTML 表を含んでいます。 - NetBeans

例文

Displaying Error MessagesIn order to enable the application to display error messages, enter the following ? php ? code block into the logon form in index.php, below the input fields but above the button:?phpif (!logonSuccess)echo "Invalid name and/or password";?>例文帳に追加

エラーメッセージの表示アプリケーションがエラーメッセージを表示できるようにするには、次の ? php ? コードブロックを index.php のログオンフォームの入力フィールドより下、ボタンより上に入力します。 - NetBeans

To implement this functionality, enter the following HTML input form in the editWishList.php file, before the closing /body tag:form name=backToMainPage action=index.phpinput type=submit value=Back To Main Page//formThe form redirects the user to the front index.php page upon pressing the Back to Main Page button. 例文帳に追加

この機能を実装するには、次の HTML 入力フォームを editWishList.php ファイルの終了 /body タグの前に入力します。 form name=backToMainPage action=index.phpinput type=submit value=Back To Main Page//form「Back to Main Page」ボタンを押すと、フォームは、ユーザーを最初の index.php ページにリダイレクトします。 - NetBeans

A default index.jsp entry page is generated and opens in the IDE's Source Editor.Also, your project appears in the Projects window. 例文帳に追加

デフォルトの index.php ページが生成され、IDE のソースエディタで開きます。 また、「プロジェクト」ウィンドウにプロジェクトが表示されます。 - NetBeans

The code presents an HTML form that enables entering the name and password of the user in the text fields. 例文帳に追加

form name=logon action=index.php method=POST Username: input type=text name=user/Password input type=password name=userpassword/input type=submit value=Edit My Wish List//formコードは、テキストフィールドにユーザーの名前とパスワードを入力できる HTML フォームを示します。 - NetBeans

Username: input type=text name=user/ Password: input type=password name=userpassword/br/ div class=error ?php if (!logonSuccess) echo Invalid name and/or password; ? /div input type=submit value=Edit My Wish List/ /form/div The class "logon" is applied to the entire form, and the class "error" is applied to an error message within the form. 例文帳に追加

div class=logon input type=submit name=myWishList value=My Wishlist onclick=javascript:showHideLogonForm()/ form name=logon action=index.php method=POST style=visibility:?php if (logonSuccess) echo hidden; else echo visible;? Username: input type=text name=user/ Password: input type=password name=userpassword/br/ div class=error ?php if (!logonSuccess) echo Invalid name and/or password; ? /div input type=submit value=Edit My Wish List/ /form/div クラス「logon」がフォーム全体に適用され、クラス「error」がフォーム内のエラーメッセージに適用されます。 - NetBeans

例文

In its disaster information network, the Japanese Association of Dialysis Physicians provides information regarding the medical facilities that give dialysis treatment registered in its network, specifically: 1) the availability of a dialysis treatment; 2) the damage situation of the facilities; 3) the number of beds available in dialysis rooms; 4) acceptance of dialysis patients; and 5) others, such as any missing items and messages to the public. URL http://www.saigai-touseki.net/index.php Respective Prefectural Governments accept applications for counseling on dialysis treatment in connection with the disaster:例文帳に追加

社団法人日本透析医会は、災害情報ネットワーク上で、登録されている透析医療機関の①透析の可否、②被災の有無、③透析室貸出可能病床、④透析受入可能状況、⑤その他不足物品や連絡事項等を情報提供(http://www.saigai-touseki.net/index.php)各都道府県においても、災害に伴う透析医療に関する相談を受付 - 厚生労働省




  
Copyright © Ministry of Health, Labour and Welfare, All Right reserved.
  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。
  
© 2010, Oracle Corporation and/or its affiliates.
Oracle and Java are registered trademarks of Oracle and/or its affiliates.Other names may be trademarks of their respective owners.
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する
英→日 日→英
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する

©2026 GRAS Group, Inc.RSS